diff options
Diffstat (limited to 'becommands/set.py')
-rw-r--r-- | becommands/set.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/becommands/set.py b/becommands/set.py index 6f40b5f..a93cbf3 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() """ |