Skip to content

Commit

Permalink
remove test test_write_typeErr_2
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Dec 14, 2024
1 parent 35fadad commit d350c40
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tests/glossary_v2_errors_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,18 +367,6 @@ def test_write_typeErr_1(self):
else:
self.fail("must raise TypeError")

def test_write_typeErr_2(self):
glos = Glossary()
try:
glos.write(
filename="",
formatName=MyStr(""),
)
except TypeError as e:
self.assertEqual(str(e), "formatName must be str")
else:
self.fail("must raise TypeError")

def test_convert_sameFilename(self):
glos = Glossary()
err = None
Expand Down

0 comments on commit d350c40

Please sign in to comment.