Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfouca committed Feb 21, 2024
1 parent 0a2a1d7 commit c54b59b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CIME/tests/test_unit_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TestCaseSubmit(unittest.TestCase):
def test_check_case(self):
case = mock.MagicMock()
# get_value arguments TEST, COMP_WAV, COMP_INTERFACE, BUILD_COMPLETE
case.get_value.side_effect = [False, "", "", True]
case.get_value.side_effect = ["", "", True]
case_submit.check_case(case, chksum=True)

case.check_all_input_data.assert_called_with(chksum=True)
Expand Down

0 comments on commit c54b59b

Please sign in to comment.