We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9bf753 commit b961717Copy full SHA for b961717
tests/test_training_args.py
@@ -64,9 +64,9 @@ def test_learning_rates(self):
64
65
def test_report_to(self):
66
args = TrainingArguments(report_to="none")
67
- self.assertEqual(args.report_to, [])
+ self.assertEqual(args.report_to, ["none"])
68
args = TrainingArguments(report_to=["none"])
69
70
args = TrainingArguments(report_to="hello")
71
self.assertEqual(args.report_to, ["hello"])
72
0 commit comments