aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/severity.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/severity.py
parentc1f60d534fbc5496a0e3df2cb7c0d053e5fa40a8 (diff)
downloadbugseverywhere-6691e2276112b3aad603a7b14ff80b53f77e03e3.tar.gz
unbreak some tests.
Diffstat (limited to 'becommands/severity.py')
-rw-r--r--becommands/severity.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/becommands/severity.py b/becommands/severity.py
index 82ef7ca..af99bf7 100644
--- a/becommands/severity.py
+++ b/becommands/severity.py
@@ -25,12 +25,12 @@ def execute(args):
>>> import os
>>> dir = tests.simple_bug_dir()
>>> os.chdir(dir.dir)
- >>> execute(("a",))
+ >>> execute(["a"])
minor
- >>> execute(("a", "wishlist"))
- >>> execute(("a",))
+ >>> execute(["a", "wishlist"])
+ >>> execute(["a"])
wishlist
- >>> execute(("a", "none"))
+ >>> execute(["a", "none"])
Traceback (most recent call last):
UserError: Invalid severity level: none
>>> tests.clean_up()