Skip to content

Commit

Permalink
Use assertDictEqual insted of assertTrue
Browse files Browse the repository at this point in the history
  • Loading branch information
sivkovic committed Jan 15, 2025
1 parent 4afce9f commit d40fa54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def test_compile_pairs5(self):
],
}

self.assertTrue(pairs == expected_pairs)
self.assertDictEqual(pairs, expected_pairs)

def test_get_pair_from_other_request(self):
"""
Expand Down

0 comments on commit d40fa54

Please sign in to comment.