diff options
author | travis%sedsystems.ca <> | 2005-01-12 01:15:42 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-01-12 01:15:42 +0000 |
commit | 16101ff8da5257bbb86f30ff9dae08369e5dcd09 (patch) | |
tree | 91d90ac7b53a6290806ca32f376db9f39b1304c7 /t | |
parent | Bug 276660 (diff) | |
download | bugzilla-16101ff8da5257bbb86f30ff9dae08369e5dcd09.tar.gz bugzilla-16101ff8da5257bbb86f30ff9dae08369e5dcd09.tar.bz2 bugzilla-16101ff8da5257bbb86f30ff9dae08369e5dcd09.zip |
Bug 276473: Show_activity merges incorrectly sometimes changesets into one changeset
Patch by vladd@bugzilla.org r=bugzilla@glob.com.au a=justdave
Diffstat (limited to 't')
-rw-r--r-- | t/007util.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/007util.t b/t/007util.t index b15925480..48c925aa3 100644 --- a/t/007util.t +++ b/t/007util.t @@ -28,7 +28,7 @@ use lib 't'; use Support::Files; BEGIN { - use Test::More tests => 12; + use Test::More tests => 13; use_ok(Bugzilla::Util); } @@ -69,6 +69,7 @@ is(trim(" fg<*\$%>+=~~ "),'fg<*$%>+=~~','trim()'); #format_time(); is(format_time("20021123140436"),'2002-11-23 14:04 TEST','format_time("20021123140436")'); -is(format_time("2002.11.24 00:05:56"),'2002-11-24 00:05 TEST','format_time("2002.11.24 00:05:56")'); +is(format_time("2002.11.24 00:05"),'2002-11-24 00:05 TEST','format_time("2002.11.24 00:05")'); +is(format_time("2002.11.24 00:05:56"),'2002-11-24 00:05:56 TEST','format_time("2002.11.24 00:05:56")'); |