From 28da7287b32e070034b8c093938effeedb2eb54e Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Sat, 1 Apr 2006 14:14:55 -0500 Subject: Fixed test suite for the unicode switch --- becommands/new.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'becommands/new.py') 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() -- cgit