We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test-save-trainer
1 parent 0ae93d3 commit 3bf02cfCopy full SHA for 3bf02cf
tests/test_training_args.py
@@ -7,9 +7,9 @@
7
8
class TestTrainingArguments(unittest.TestCase):
9
def test_default_output_dir(self):
10
- """Test that output_dir defaults to 'tmp_trainer' when not specified."""
+ """Test that output_dir defaults to 'trainer_output' when not specified."""
11
args = TrainingArguments(output_dir=None)
12
- self.assertEqual(args.output_dir, "tmp_trainer")
+ self.assertEqual(args.output_dir, "trainer_output")
13
14
def test_custom_output_dir(self):
15
"""Test that output_dir is respected when specified."""
0 commit comments