summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-11 22:57:42 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-13 17:40:20 -0800
commit2fcfda1392b99cc403c99328b1b197432c3ea145 (patch)
tree304c472d15a16cc7961a9afc6d4e9f69792ba165
parent2d9c134245614026ec9528e5a9e78ba1d923f64b (diff)
downloadpyramid-2fcfda1392b99cc403c99328b1b197432c3ea145.tar.gz
pyramid-2fcfda1392b99cc403c99328b1b197432c3ea145.tar.bz2
pyramid-2fcfda1392b99cc403c99328b1b197432c3ea145.zip
change options to args for test_template. This now aligns with pcreate, which the test uses
-rw-r--r--pyramid/tests/test_scaffolds/test_template.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/tests/test_scaffolds/test_template.py b/pyramid/tests/test_scaffolds/test_template.py
index 2e961c516..98f2daf73 100644
--- a/pyramid/tests/test_scaffolds/test_template.py
+++ b/pyramid/tests/test_scaffolds/test_template.py
@@ -143,13 +143,13 @@ class DummyCopydir(object):
self.vars = vars
self.kw = kw
-class DummyOptions(object):
+class DummyArgs(object):
simulate = False
overwrite = False
interactive = False
class DummyCommand(object):
- options = DummyOptions()
+ args = DummyArgs()
verbosity = 1