aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/assign.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/assign.py')
-rw-r--r--becommands/assign.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/becommands/assign.py b/becommands/assign.py
index 2308a12..d7c2fca 100644
--- a/becommands/assign.py
+++ b/becommands/assign.py
@@ -26,13 +26,13 @@ def execute(args):
>>> os.chdir(dir.dir)
>>> dir.get_bug("a").assigned is None
True
- >>> execute(("a",))
+ >>> execute(["a",])
>>> dir.get_bug("a").assigned == names.creator()
True
- >>> execute(("a", "someone"))
+ >>> execute(["a", "someone"])
>>> dir.get_bug("a").assigned
u'someone'
- >>> execute(("a","none"))
+ >>> execute(["a","none"])
>>> dir.get_bug("a").assigned is None
True
>>> tests.clean_up()