From 9ed3d034cfcb16646c8fbda71d670a09ba72609e Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 19 Jan 2023 21:52:23 -0500 Subject: [PATCH] Fix shadowed test function --- tests/scrobbles_tests/test_aggregators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scrobbles_tests/test_aggregators.py b/tests/scrobbles_tests/test_aggregators.py index 85d8acd..581cadf 100644 --- a/tests/scrobbles_tests/test_aggregators.py +++ b/tests/scrobbles_tests/test_aggregators.py @@ -31,7 +31,7 @@ def test_scrobble_counts_data(client, mopidy_track_request_data): @pytest.mark.django_db -def test_scrobble_counts_data(client, mopidy_track_request_data): +def test_week_of_scrobbles_data(client, mopidy_track_request_data): build_scrobbles(client, mopidy_track_request_data, 7, 1) week = week_of_scrobbles() assert list(week.values()) == [1, 1, 1, 1, 1, 1, 1]