aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/close.py
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-01 14:14:55 -0500
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-01 14:14:55 -0500
commit28da7287b32e070034b8c093938effeedb2eb54e (patch)
tree73ef5dd00ed463e5a3b7a8fcba92305712445567 /becommands/close.py
parent9e774f72d807c509ed0fbb47bbd07a6fe5ea7464 (diff)
downloadbugseverywhere-28da7287b32e070034b8c093938effeedb2eb54e.tar.gz
Fixed test suite for the unicode switch
Diffstat (limited to 'becommands/close.py')
-rw-r--r--becommands/close.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/close.py b/becommands/close.py
index 9d01a7f..04ae4ba 100644
--- a/becommands/close.py
+++ b/becommands/close.py
@@ -23,10 +23,10 @@ def execute(args):
>>> dir = tests.simple_bug_dir()
>>> os.chdir(dir.dir)
>>> dir.get_bug("a").status
- 'open'
+ u'open'
>>> execute(("a",))
>>> dir.get_bug("a").status
- 'closed'
+ u'closed'
>>> tests.clean_up()
"""
assert(len(args) == 1)