Skip to content

Commit ae1dd2f

Browse files
ChoiByungWooklaurenyu
authored andcommitted
Fix unit test (aws#32)
1 parent f19f4e7 commit ae1dd2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_tuner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_stop_tuning_job(sagemaker_session, tuner):
140140
def test_stop_tuning_job_no_tuning_job(tuner):
141141
with pytest.raises(ValueError) as e:
142142
tuner.stop_tuning_job()
143-
assert 'No HPO job available' in str(e)
143+
assert 'No tuning job available' in str(e)
144144

145145

146146
#################################################################################

0 commit comments

Comments
 (0)