Unverified Commit 7968051a authored by Sylvain Gugger's avatar Sylvain Gugger Committed by GitHub
Browse files

Fix typo

parent 2977bd52
...@@ -196,7 +196,7 @@ class TrainerIntegrationTest(unittest.TestCase): ...@@ -196,7 +196,7 @@ class TrainerIntegrationTest(unittest.TestCase):
dict1, dict2 = args.to_dict(), trainer.args.to_dict() dict1, dict2 = args.to_dict(), trainer.args.to_dict()
for key in dict1.keys(): for key in dict1.keys():
# Logging dir can be slightly different as they default to something with the time. # 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]) self.assertEqual(dict1[key], dict2[key])
def test_reproducible_training(self): def test_reproducible_training(self):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment