aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/severity.py
diff options
context:
space:
mode:
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..92c83fc 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()