diff options
| -rw-r--r-- | pyramid/tests/test_scripts/test_pserve.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tests/test_scripts/test_pserve.py b/pyramid/tests/test_scripts/test_pserve.py index 9934fc441..f19985b35 100644 --- a/pyramid/tests/test_scripts/test_pserve.py +++ b/pyramid/tests/test_scripts/test_pserve.py @@ -38,7 +38,7 @@ class TestPServeCommand(unittest.TestCase): def test_config_args_no_command(self): inst = self._makeOne() - inst.args = ['foo', 'a=1', 'b=2'] + inst.args.config_args = ['a=1', 'b=2'] result = inst.get_config_args() self.assertEqual(result, {'a': '1', 'b': '2'}) |
