summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-01-12 02:15:42 +0100
committertravis%sedsystems.ca <>2005-01-12 02:15:42 +0100
commit16101ff8da5257bbb86f30ff9dae08369e5dcd09 (patch)
tree91d90ac7b53a6290806ca32f376db9f39b1304c7 /t
parent4f5cad994b3786713c79b831e3af48ea7fe3a9b0 (diff)
downloadbugzilla-16101ff8da5257bbb86f30ff9dae08369e5dcd09.tar.gz
bugzilla-16101ff8da5257bbb86f30ff9dae08369e5dcd09.tar.xz
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.t5
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")');