From 5bc7bb00e0340629a2d9cd033df23e4cd93b26a3 Mon Sep 17 00:00:00 2001 From: Piotr Sarna Date: Wed, 22 May 2019 13:21:08 +0200 Subject: [PATCH] alternator-test: rename test_query_with_paginator Paginator is an implementation detail and does not belong in the name, and thus the test is renamed to test_query_basic_restrictions. Message-Id: <849bc9d210d0faee4bb8479306654f2a59e18517.1558524028.git.sarna@scylladb.com> --- alternator-test/test_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alternator-test/test_query.py b/alternator-test/test_query.py index 2b77dec851..4c1aee0c7d 100644 --- a/alternator-test/test_query.py +++ b/alternator-test/test_query.py @@ -10,7 +10,7 @@ def set_of_frozen_elements(list_of_dicts): return {frozenset(item.items()) for item in list_of_dicts} # Test that scanning works fine with in-stock paginator -def test_query_with_paginator(dynamodb, filled_test_table): +def test_query_basic_restrictions(dynamodb, filled_test_table): test_table, items = filled_test_table paginator = dynamodb.meta.client.get_paginator('query')