From 39b411b7a33f0387ac80fd996bd8c109a13d841c Mon Sep 17 00:00:00 2001 From: Dimitris Papagiannis Date: Thu, 8 Aug 2024 16:39:38 +0200 Subject: [PATCH] Call correct function in test --- 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 71c8432..93bc5da 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -10,7 +10,7 @@ get_lumisections, get_oms_lumisections, get_lumisection_ranges, - # get_oms_lumisection_ranges, + get_oms_lumisection_ranges, get_joint_lumisection_ranges, generate_json, create_json, @@ -200,7 +200,7 @@ def test_get_lumisection_ranges(): def test_get_oms_lumisection_ranges(): - lumisections = get_lumisection_ranges(VALID_RUN_NUMBER, VALID_DATASET_NAME) + lumisections = get_oms_lumisection_ranges(VALID_RUN_NUMBER) assert len(lumisections) > 0