diff options
-rw-r--r-- | test/unit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit.py b/test/unit.py index d3d00fe0..2061e3e1 100644 --- a/test/unit.py +++ b/test/unit.py @@ -29,7 +29,7 @@ class TestUnit(unittest.TestCase): shutil.rmtree(self.testdir)
def assertTry(self, assert_method, description, *args):
- try: getattr(self, assert_method)(*args, description)
+ try: getattr(self, assert_method)(*args, msg=description)
except AssertionError: print('not yet: ' + description)
def check_modules(self, *modules):
|