From 614a901231205de712050f156a5cfc3af7e8c1fb Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Tue, 17 Nov 2009 13:31:56 -0600 Subject: [PATCH] silence extra test output for non-verbose runs --- t/Asset/Wobject/Calendar.t | 4 ++-- t/rawHrefUrls.t | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/t/Asset/Wobject/Calendar.t b/t/Asset/Wobject/Calendar.t index a9dc27bc2..0497a2260 100644 --- a/t/Asset/Wobject/Calendar.t +++ b/t/Asset/Wobject/Calendar.t @@ -503,8 +503,8 @@ my $listCal = $node->addChild({ $allDayDt = $bday->cloneToUserTimeZone->truncate( to => 'day' ); my $prevDayDt = $bday->cloneToUserTimeZone->truncate( to => 'day' )->subtract(days => 1)->add(hours => 19); -diag $allDayDt->toDatabase; -diag $prevDayDt->toDatabase; +note $allDayDt->toDatabase; +note $prevDayDt->toDatabase; $allDay = $listCal->addChild({ className => 'WebGUI::Asset::Event', diff --git a/t/rawHrefUrls.t b/t/rawHrefUrls.t index 4d20286b6..b119fa275 100644 --- a/t/rawHrefUrls.t +++ b/t/rawHrefUrls.t @@ -53,7 +53,7 @@ my $nonRootLink = qr{ sub checkLinks { my ($tag, $attrs) = @_; if ($tag eq 'link' && $attrs->{href}) { - diag sprintf '%s: %s', $tag, $attrs->{href}; + note sprintf '%s: %s', $tag, $attrs->{href}; if ($attrs->{href} !~ $nonRootLink) { $validLinks = 0; }