From 2a4b892d6c0f6609ea48df0dc393397af2b7b1c1 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 27 May 2019 19:28:47 -0700 Subject: [PATCH] Tidy up with Black --- tests/test_api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index c97eced9..5c1bff15 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -754,7 +754,11 @@ def test_table_with_reserved_word_name(app_client): # Ensure faceting doesn't break pagination: ("/fixtures/compound_three_primary_keys.json?_facet=pk1", 1001, 21), # Paginating while sorted by an expanded foreign key should work - ("/fixtures/roadside_attraction_characteristics.json?_size=2&_sort=attraction_id&_labels=on", 5, 3), + ( + "/fixtures/roadside_attraction_characteristics.json?_size=2&_sort=attraction_id&_labels=on", + 5, + 3, + ), ], ) def test_paginate_tables_and_views(app_client, path, expected_rows, expected_pages):