diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-10 15:46:52 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-13 17:39:00 -0800 |
| commit | 7ff9e9a3229a709f357a88d39763e34d9fb62206 (patch) | |
| tree | 1ac10ea096f4493503d8a9bb48e268de9629ebd2 | |
| parent | 3b72e86a4dc05086fb06b89f108d4e8129ec7d7c (diff) | |
| download | pyramid-7ff9e9a3229a709f357a88d39763e34d9fb62206.tar.gz pyramid-7ff9e9a3229a709f357a88d39763e34d9fb62206.tar.bz2 pyramid-7ff9e9a3229a709f357a88d39763e34d9fb62206.zip | |
get final pserve test to pass
- ping @mmerickel or @bertjwregeer for review. I'm uncertain about what was the original test's intent, and whether this test still tests what was originally intended.
| -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'}) |
