aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/new.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/new.py
parent9e774f72d807c509ed0fbb47bbd07a6fe5ea7464 (diff)
downloadbugseverywhere-28da7287b32e070034b8c093938effeedb2eb54e.tar.gz
Fixed test suite for the unicode switch
Diffstat (limited to 'becommands/new.py')
-rw-r--r--becommands/new.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/new.py b/becommands/new.py
index f16306d..7bd2382 100644
--- a/becommands/new.py
+++ b/becommands/new.py
@@ -27,12 +27,12 @@ def execute(args):
Created bug with ID a
>>> bug = list(dir.list())[0]
>>> bug.summary
- 'this is a test'
+ u'this is a test'
>>> bug.creator = os.environ["LOGNAME"]
>>> bug.time <= int(time.time())
True
>>> bug.severity
- 'minor'
+ u'minor'
>>> bug.target == None
True
>>> tests.clean_up()