diff --git a/tests/glossary_v2_errors_test.py b/tests/glossary_v2_errors_test.py index fadeede67..6a624fc04 100644 --- a/tests/glossary_v2_errors_test.py +++ b/tests/glossary_v2_errors_test.py @@ -360,7 +360,7 @@ def test_write_typeErr_1(self): try: glos.write( filename=MyStr(""), - format="", + formatName="", ) except TypeError as e: self.assertEqual(str(e), "filename must be str") @@ -372,7 +372,7 @@ def test_write_typeErr_2(self): try: glos.write( filename="", - format=MyStr(""), + formatName=MyStr(""), ) except TypeError as e: self.assertEqual(str(e), "formatName must be str")