diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-11 22:57:42 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-13 17:40:20 -0800 |
| commit | 2fcfda1392b99cc403c99328b1b197432c3ea145 (patch) | |
| tree | 304c472d15a16cc7961a9afc6d4e9f69792ba165 | |
| parent | 2d9c134245614026ec9528e5a9e78ba1d923f64b (diff) | |
| download | pyramid-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.py | 4 |
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 |
