mirror of
https://github.com/bellingcat/vk-url-scraper.git
synced 2026-06-07 19:08:38 +03:00
4 lines
111 B
Python
4 lines
111 B
Python
def assert_equal_lists(l1, l2):
|
|
assert len(l1) == len(l2)
|
|
assert str(sorted(l1)) == str(sorted(l2))
|