Skip to content

Commit f01d89c

Browse files
committed
RDBC-642 Code Format
1 parent 9ec596b commit f01d89c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ravendb/tests/jvm_migrated_tests/faceted_tests/test_facet_paging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def test_can_perform_faceted_paging_search_with_no_page_size_no_max_results_hits
108108
camera_counts[d.manufacturer] += 1
109109

110110
cameras_by_hits = list(
111-
map(lambda x: x[0].lower(), sorted(camera_counts.items(), key=lambda item:(-item[1],item[0]))[2:])
111+
map(lambda x: x[0].lower(), sorted(camera_counts.items(), key=lambda item: (-item[1], item[0]))[2:])
112112
)
113113

114114
self.assertEqual(3, len(facet_results["manufacturer"].values))
@@ -147,7 +147,7 @@ def test_can_perform_faceted_paging_search_with_no_page_size_with_max_results_hi
147147
camera_counts[d.manufacturer] += 1
148148

149149
cameras_by_hits = list(
150-
map(lambda x: x[0].lower(), sorted(camera_counts.items(), key=lambda item:(-item[1],item[0]))[2:])
150+
map(lambda x: x[0].lower(), sorted(camera_counts.items(), key=lambda item: (-item[1], item[0]))[2:])
151151
)
152152

153153
self.assertEqual(2, len(facet_results.get("manufacturer").values))

0 commit comments

Comments
 (0)