This commit is contained in:
Sylvain Gugger 2020-10-13 17:30:46 -04:00 committed by GitHub
parent 2977bd528f
commit 7968051aba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):