diff options
author | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-01 14:14:55 -0500 |
---|---|---|
committer | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-01 14:14:55 -0500 |
commit | 28da7287b32e070034b8c093938effeedb2eb54e (patch) | |
tree | 73ef5dd00ed463e5a3b7a8fcba92305712445567 /becommands/close.py | |
parent | 9e774f72d807c509ed0fbb47bbd07a6fe5ea7464 (diff) | |
download | bugseverywhere-28da7287b32e070034b8c093938effeedb2eb54e.tar.gz |
Fixed test suite for the unicode switch
Diffstat (limited to 'becommands/close.py')
-rw-r--r-- | becommands/close.py | 4 |
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) |