diff options
author | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-04 19:52:25 -0400 |
---|---|---|
committer | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-04 19:52:25 -0400 |
commit | 5d75c1f4b7362ef184276f781346e69c34bd4874 (patch) | |
tree | 4d9444c748d0f7520481b23216a92723bcba12ce /becommands/close.py | |
parent | 2225a378d84f77c3512ee407af1aeb355b463084 (diff) | |
download | bugseverywhere-5d75c1f4b7362ef184276f781346e69c34bd4874.tar.gz |
Fixed tests to use lists, so that optparse can mangle them
Diffstat (limited to 'becommands/close.py')
-rw-r--r-- | becommands/close.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/close.py b/becommands/close.py index 3ced7eb..2b28055 100644 --- a/becommands/close.py +++ b/becommands/close.py @@ -24,7 +24,7 @@ def execute(args): >>> os.chdir(dir.dir) >>> dir.get_bug("a").status u'open' - >>> execute(("a",)) + >>> execute(["a",]) >>> dir.get_bug("a").status u'closed' >>> tests.clean_up() |