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

fbcode//torchx/runner/test [B] #1001

Merged
merged 1 commit into from
Jan 28, 2025
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
fbcode//torchx/runner/test [B] (#1001)
Summary: Pull Request resolved: #1001

Reviewed By: hstonec

Differential Revision: D68022130
itamaro authored and facebook-github-bot committed Jan 28, 2025
commit c090415bbc3ccc9ab44fed2d68c28ac78e5cf0af
2 changes: 1 addition & 1 deletion torchx/runner/test/config_test.py
Original file line number Diff line number Diff line change
@@ -425,7 +425,7 @@ def test_load_invalid_runopt(self, _) -> None:
# this makes things super hard to guarantee BC - stale config file will fail
# to run, we don't want that)

self.assertEquals("option_that_exists", cfg.get("s"))
self.assertEqual("option_that_exists", cfg.get("s"))

def test_load_no_section(self) -> None:
cfg = {}