diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-11 23:14:20 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-13 17:40:20 -0800 |
| commit | 8529b334e96078bac6c626da764db8f8e111ad72 (patch) | |
| tree | 940d8ceefe487d22370582d938fa63e37c63f1da | |
| parent | 79f067b570cd8e23ee09a5b1de4b2fb3ec589a00 (diff) | |
| download | pyramid-8529b334e96078bac6c626da764db8f8e111ad72.tar.gz pyramid-8529b334e96078bac6c626da764db8f8e111ad72.tar.bz2 pyramid-8529b334e96078bac6c626da764db8f8e111ad72.zip | |
fix test that caused coverage to drop one line
| -rw-r--r-- | pyramid/tests/test_scripts/test_pviews.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tests/test_scripts/test_pviews.py b/pyramid/tests/test_scripts/test_pviews.py index a67a8c4d6..7bdab5804 100644 --- a/pyramid/tests/test_scripts/test_pviews.py +++ b/pyramid/tests/test_scripts/test_pviews.py @@ -257,7 +257,7 @@ class TestPViewsCommand(unittest.TestCase): command.out = L.append command._find_view = lambda arg1: None command.args.config_uri = '/foo/bar/myapp.ini#myapp' - command.args.url = '/a' + command.args.url = 'a' result = command.run() self.assertEqual(result, 0) self.assertEqual(L[1], 'URL = /a') |
