From b4fca0be6536a105827f063dad2e303658d72f74 Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Wed, 11 Dec 2019 09:21:54 +0100 Subject: [PATCH] Startup --- script/UnitTest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/UnitTest.py b/script/UnitTest.py index 28db36f..2e15059 100644 --- a/script/UnitTest.py +++ b/script/UnitTest.py @@ -1,5 +1,5 @@ -import ut as unittest -reload(ut) +import ut +#reload(ut) class Test(ut.TestCase): def testAdd(self): ## test method names begin 'test*' @@ -10,7 +10,7 @@ class Test(ut.TestCase): self.assertEquals((5 * 8), 40) if __name__ == '__main__': - import sys;sys.argv = ['', 'Test.testName'] + import sys;sys.argv = ['', 'Test.testAdd'] ut.main() \ No newline at end of file