diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-11 00:55:53 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-13 17:40:19 -0800 |
| commit | 74b2368db37f360bf1021ab8b1d35961944597b5 (patch) | |
| tree | 231c1d5fa6f699619e905a5312a9776531a40770 | |
| parent | 2b7d128b9c5f1587f22c651ae44f71c331b22827 (diff) | |
| download | pyramid-74b2368db37f360bf1021ab8b1d35961944597b5.tar.gz pyramid-74b2368db37f360bf1021ab8b1d35961944597b5.tar.bz2 pyramid-74b2368db37f360bf1021ab8b1d35961944597b5.zip | |
brain function temporarily restored, split config_vars into _vars and _uri
- herpderp
| -rw-r--r-- | pyramid/tests/test_scripts/test_pserve.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/tests/test_scripts/test_pserve.py b/pyramid/tests/test_scripts/test_pserve.py index 4eb85edf9..18b0c84b6 100644 --- a/pyramid/tests/test_scripts/test_pserve.py +++ b/pyramid/tests/test_scripts/test_pserve.py @@ -38,7 +38,8 @@ class TestPServeCommand(unittest.TestCase): def test_config_vars_no_command(self): inst = self._makeOne() - inst.args.config_vars = ['foo', 'a=1', 'b=2'] + inst.args.config_uri = 'foo' + inst.args.config_vars = ['a=1', 'b=2'] result = inst.get_config_vars() self.assertEqual(result, {'a': '1', 'b': '2'}) |
