diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-11 00:47:56 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-13 17:40:19 -0800 |
| commit | 2b7d128b9c5f1587f22c651ae44f71c331b22827 (patch) | |
| tree | 6b0e4b62d21fcf6e32ff4a294c850a3791eeb215 | |
| parent | 931cbd9df499dc9c82c30081757a1d315cf89083 (diff) | |
| download | pyramid-2b7d128b9c5f1587f22c651ae44f71c331b22827.tar.gz pyramid-2b7d128b9c5f1587f22c651ae44f71c331b22827.tar.bz2 pyramid-2b7d128b9c5f1587f22c651ae44f71c331b22827.zip | |
one more refactor of config_args to config_vars
| -rw-r--r-- | pyramid/tests/test_scripts/test_pserve.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/tests/test_scripts/test_pserve.py b/pyramid/tests/test_scripts/test_pserve.py index 5f6d6ee57..4eb85edf9 100644 --- a/pyramid/tests/test_scripts/test_pserve.py +++ b/pyramid/tests/test_scripts/test_pserve.py @@ -36,9 +36,9 @@ class TestPServeCommand(unittest.TestCase): self.assertEqual(result, 2) self.assertEqual(self.out_.getvalue(), 'You must give a config file') - def test_config_args_no_command(self): + def test_config_vars_no_command(self): inst = self._makeOne() - inst.args.config_args = ['foo', 'a=1', 'b=2'] + inst.args.config_vars = ['foo', 'a=1', 'b=2'] result = inst.get_config_vars() self.assertEqual(result, {'a': '1', 'b': '2'}) |
