summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-08-19 21:16:24 +0300
committerLars Wirzenius <liw@liw.fi>2017-08-19 21:16:24 +0300
commit5dd1506a586b0c680bd1a21665f32772ce6e0e18 (patch)
tree8f54f2894f12a6ddef27cf88422587ddfec3dbe1
parent4989806075aa4ffb5e4233a09501086ed7dc4289 (diff)
downloadcliapp-5dd1506a586b0c680bd1a21665f32772ce6e0e18.tar.gz
Add: Python3 support
-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'))