From 7358b8901fdb8df42d764580fb59fa890ef67329 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sat, 16 Mar 2013 15:42:35 +0000 Subject: [PATCH] Fixed name of unit-test class --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 8a00e54..84035a5 100755 --- a/test.py +++ b/test.py @@ -14,7 +14,7 @@ export_bin = os.path.join(my_dir, '0export') PUBLISH_URI = 'http://0install.net/2006/interfaces/0publish' -class TestCompile(unittest.TestCase): +class TestExport(unittest.TestCase): def setUp(self): os.chdir('/') self.tmpdir = tempfile.mkdtemp(prefix = '0export-test-') @@ -52,6 +52,6 @@ class TestCompile(unittest.TestCase): assert child.wait() == 0 assert '--xmlsign' in cout -suite = unittest.makeSuite(TestCompile) +suite = unittest.makeSuite(TestExport) if __name__ == '__main__': unittest.main() -- 2.11.4.GIT