From 74b2368db37f360bf1021ab8b1d35961944597b5 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 11 Dec 2016 00:55:53 -0800 Subject: brain function temporarily restored, split config_vars into _vars and _uri - herpderp --- pyramid/tests/test_scripts/test_pserve.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'}) -- cgit v1.2.3