From 413c20e38e2d29fef59ba10c435bf60882d085e5 Mon Sep 17 00:00:00 2001 From: Keith Bauer Date: Thu, 18 Jul 2024 13:21:22 -0500 Subject: [PATCH] Fix next_link in test --- tests/test_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_controller.py b/tests/test_controller.py index c5b9e8207..69f1680e4 100644 --- a/tests/test_controller.py +++ b/tests/test_controller.py @@ -3943,7 +3943,7 @@ def test_feed(self): last_item.sort_title, last_item.sort_author, last_item.id ] expect = "key=%s" % urllib.parse.quote_plus( - json.dumps(expected_pagination_key) + json.dumps(expected_pagination_key), safe="," ) assert expect in next_link