Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
batrick committed Oct 18, 2024
1 parent ed4e65d commit 2c5f844
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions teuthology/suite/test/test_run_.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,10 @@ def test_successful_schedule(
m_schedule_jobs.assert_has_calls(
[call([], [expected_job], runobj.name)],
)
kwargs = m_schedule.call_kwargs
kwargs = m_schedule_jobs.call_kwargs
stdin_yaml = yaml.safe_load(kwargs['stdin'])
for k in y:
assert stdin_yaml[y] == y[k]
assert y[k] == stdin_yaml[k]
for k in teuthology_keys:
assert k in stdin_yaml
m_write_rerun_memo.assert_called_once_with()
Expand Down

0 comments on commit 2c5f844

Please sign in to comment.