From 01ff20a94366e543e6def093a26d2d1433f75c78 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Mon, 8 Apr 2024 12:51:58 -0700 Subject: [PATCH] fix token test --- integration_tests/test_global.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/test_global.py b/integration_tests/test_global.py index 3d2a6e75..172a1f34 100644 --- a/integration_tests/test_global.py +++ b/integration_tests/test_global.py @@ -3,6 +3,6 @@ def test_global_1(): - client = CAVEclient(token=os.environ["CAVE_TOKEN"]) + client = CAVEclient(auth_token=os.environ["CAVE_TOKEN"]) datastacks = client.info.get_datastacks() assert len(datastacks) > 10