Skip to content

Commit 3bf02cf

Browse files
authored
CI: fix test-save-trainer (#36191)
* fix * also the docstring
1 parent 0ae93d3 commit 3bf02cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_training_args.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
class TestTrainingArguments(unittest.TestCase):
99
def test_default_output_dir(self):
10-
"""Test that output_dir defaults to 'tmp_trainer' when not specified."""
10+
"""Test that output_dir defaults to 'trainer_output' when not specified."""
1111
args = TrainingArguments(output_dir=None)
12-
self.assertEqual(args.output_dir, "tmp_trainer")
12+
self.assertEqual(args.output_dir, "trainer_output")
1313

1414
def test_custom_output_dir(self):
1515
"""Test that output_dir is respected when specified."""

0 commit comments

Comments
 (0)