Skip to content

Commit

Permalink
[py] update file download test not to care about order of files in array
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Dec 6, 2023
1 parent d568d68 commit 8ef8cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/python/tests/drivers/test_remote_webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_downloads(server, temp_dir):

files = driver.get_downloadable_files()

assert files == file_names
assert sorted(files) == sorted(file_names)
downloadable_file = files[0]
target_directory = temp_dir

Expand Down

0 comments on commit 8ef8cf8

Please sign in to comment.