From 3b3d026ee3148b41372245c3a6dddf16b99f4e3b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 20 Jan 2015 22:40:45 +0100 Subject: [PATCH] fix install test by making sure common.options is set --- tests/install.TestCase | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/install.TestCase b/tests/install.TestCase index fcedb959..f0a6a968 100755 --- a/tests/install.TestCase +++ b/tests/install.TestCase @@ -40,6 +40,7 @@ if __name__ == "__main__": parser.add_option("-v", "--verbose", action="store_true", default=False, help="Spew out even more information than normal") (fdroidserver.install.options, args) = parser.parse_args(['--verbose']) + fdroidserver.common.options = fdroidserver.install.options newSuite = unittest.TestSuite() newSuite.addTest(unittest.makeSuite(InstallTest))