From 7968051aba33ebe47668ef0d8ff2f8888dcf94bd Mon Sep 17 00:00:00 2001 From: Sylvain Gugger <35901082+sgugger@users.noreply.github.com> Date: Tue, 13 Oct 2020 17:30:46 -0400 Subject: [PATCH] Fix typo --- tests/test_trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_trainer.py b/tests/test_trainer.py index eb23e7eb1a..36eace28f4 100755 --- a/tests/test_trainer.py +++ b/tests/test_trainer.py @@ -196,7 +196,7 @@ class TrainerIntegrationTest(unittest.TestCase): dict1, dict2 = args.to_dict(), trainer.args.to_dict() for key in dict1.keys(): # Logging dir can be slightly different as they default to something with the time. - if key != "loggin_dir": + if key != "logging_dir": self.assertEqual(dict1[key], dict2[key]) def test_reproducible_training(self):