Explorar o código

Merge pull request #525 from msabramo/test_options_unixsocket_configfile_dont_use_argv_from_command_line

test_options_unixsocket_configfile: Don't use argv
Mike Naberezny %!s(int64=10) %!d(string=hai) anos
pai
achega
823bf39fc6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      supervisor/tests/test_options.py

+ 1 - 1
supervisor/tests/test_options.py

@@ -397,7 +397,7 @@ class ClientOptionsTests(unittest.TestCase):
         fp = StringIO(s)
         instance = self._makeOne()
         instance.configfile = fp
-        instance.realize()
+        instance.realize(())
         self.assertEqual(instance.serverurl, 'unix:///dev/null')
 
 class ServerOptionsTests(unittest.TestCase):