aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/set.py
diff options
context:
space:
mode:
authorMarien Zwart <marienz@gentoo.org>2006-04-05 02:19:17 +0200
committerMarien Zwart <marienz@gentoo.org>2006-04-05 02:19:17 +0200
commit6691e2276112b3aad603a7b14ff80b53f77e03e3 (patch)
treecc5a4bcbf86c39a7f19c637ff037834f8442ec53 /becommands/set.py
parentc1f60d534fbc5496a0e3df2cb7c0d053e5fa40a8 (diff)
downloadbugseverywhere-6691e2276112b3aad603a7b14ff80b53f77e03e3.tar.gz
unbreak some tests.
Diffstat (limited to 'becommands/set.py')
-rw-r--r--becommands/set.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/becommands/set.py b/becommands/set.py
index 6f40b5f..e359df1 100644
--- a/becommands/set.py
+++ b/becommands/set.py
@@ -22,13 +22,13 @@ def execute(args):
>>> import os
>>> dir = tests.simple_bug_dir()
>>> os.chdir(dir.dir)
- >>> execute(("a",))
+ >>> execute(["a"])
None
- >>> execute(("a", "tomorrow"))
- >>> execute(("a",))
+ >>> execute(["a", "tomorrow"])
+ >>> execute(["a"])
tomorrow
- >>> execute(("a", "none"))
- >>> execute(("a",))
+ >>> execute(["a", "none"])
+ >>> execute(["a"])
None
>>> tests.clean_up()
"""