Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix flaky test. #631

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix flaky test.
  • Loading branch information
apghml committed Aug 5, 2024
commit d1c484c3fd1784fac4829dd4ae46ce3e89539970
2 changes: 1 addition & 1 deletion axlearn/cloud/common/bastion_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def mock_listdir(d):
for call_args in mock_fns["_download_jobspec"].call_args_list:
# call_args[0] is the positional args.
downloaded_jobs.append(call_args[0][0])
self.assertSequenceEqual(valid_jobspecs, downloaded_jobs)
self.assertSameElements(valid_jobspecs, downloaded_jobs)
self.assertContainsSubset(
["FAKE_SPECS/test/invalid", "FAKE_USER_STATES/test/invalid_user_state"],
[call_args[0][0] for call_args in mock_fns["_remove"].call_args_list],
Expand Down