From 5dd1506a586b0c680bd1a21665f32772ce6e0e18 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 19 Aug 2017 21:16:24 +0300 Subject: Add: Python3 support --- cliapp/pluginmgr_tests.py | 4 ++-- 1 file 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')) -- cgit v1.2.1