From 99dacfcb86b176861a54f7ddb617961ae7a5f1dc Mon Sep 17 00:00:00 2001 From: murphy <william.murphy@embl.de> Date: Tue, 26 Mar 2024 11:36:48 +0100 Subject: [PATCH] Fix stocks endpoint tests --- tests/test_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_client.py b/tests/test_client.py index cfa7bbb..3de576d 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -105,11 +105,11 @@ def test_register_data(auth_test_client, collection_id, comment, name): (1, None, 'test_name'), (1, 'test comment', 'test_name'), )) -def test_register_stocks_data(auth_test_client, collection_id, comment, name): +def test_register_labid_data(auth_test_client, collection_id, comment, name): """ Test the data registration endpoint. """ - resp = auth_test_client.register_stocks_data( + resp = auth_test_client.register_labid_data( path='/g/test/stocks/bar', collection_id=collection_id, comment=comment, -- GitLab