summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cliapp/pluginmgr_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cliapp/pluginmgr_tests.py b/cliapp/pluginmgr_tests.py
index e2a79f1..be17422 100644
--- a/cliapp/pluginmgr_tests.py
+++ b/cliapp/pluginmgr_tests.py
@@ -97,7 +97,7 @@ class PluginManagerCompatibleApplicationVersionTests(unittest.TestCase):
self.assertFalse(self.pm.compatible_version('1.2.4'))
def test_accepts_one(self):
- self.assert_(self.pm.compatible_version('1'))
+ self.assertTrue(self.pm.compatible_version('1'))
def test_accepts_one_two_three(self):
- self.assert_(self.pm.compatible_version('1.2.3'))
+ self.assertTrue(self.pm.compatible_version('1.2.3'))