Skip to content

Commit

Permalink
update tests/glossary_v2_errors_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Dec 14, 2024
1 parent a5a80a1 commit 6d4ed72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/glossary_v2_errors_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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")
Expand Down

0 comments on commit 6d4ed72

Please sign in to comment.