From 77b80128b6d422d1bb8cf01e096888adb17eff17 Mon Sep 17 00:00:00 2001 From: chainsawriot Date: Sat, 21 Feb 2026 16:20:28 +0100 Subject: [PATCH] Fix #191 --- tests/testthat/test-get_account_auth.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-get_account_auth.R b/tests/testthat/test-get_account_auth.R index 68b5087..7785895 100644 --- a/tests/testthat/test-get_account_auth.R +++ b/tests/testthat/test-get_account_auth.R @@ -115,7 +115,7 @@ test_that("get_account_lists", { test_that("get_account_relationships", { vcr::use_cassette("get_account_relationships_default", { - x <- get_account_relationships(id = id, token = fake_token) + x <- get_account_relationships(ids = id, token = fake_token) }) expect_true("tbl_df" %in% class(x)) })