Files
vk-url-scraper/tests/util.py
2022-06-17 19:15:20 +02:00

4 lines
111 B
Python

def assert_equal_lists(l1, l2):
assert len(l1) == len(l2)
assert str(sorted(l1)) == str(sorted(l2))