diff --git a/t/Asset/Wobject/Poll.t b/t/Asset/Wobject/Poll.t index 096a8bc23..9e622fc02 100644 --- a/t/Asset/Wobject/Poll.t +++ b/t/Asset/Wobject/Poll.t @@ -106,7 +106,6 @@ my $uploadsPath = Path::Class::Dir->new($session->config->get('uploadsPath')); my $uploadsUrl = Path::Class::Dir->new($session->config->get('uploadsURL')); my $graphRelative = $graphUrl->relative($uploadsUrl); my $graphFile = $uploadsPath->file($graphRelative); -note $graphFile->stringify; ok(-e $graphFile->stringify, 'graph exists'); diff --git a/t/Asset/Wobject/Search.t b/t/Asset/Wobject/Search.t index 978d01e0c..64b290435 100644 --- a/t/Asset/Wobject/Search.t +++ b/t/Asset/Wobject/Search.t @@ -123,7 +123,6 @@ $search->update({ $search->update({useContainers => 1}); $search->view; like $templateVars->{result_set}->[0]->{url}, qr{\?pn=\d}, 'search returns paginated URL for a Thread when useContainers=1'; - note Dumper $templateVars; WebGUI::Test->unmockAssetId($templateId); $session->request->setup_body({}); diff --git a/t/Content/SiteIndex.t b/t/Content/SiteIndex.t index 965028491..81b216999 100644 --- a/t/Content/SiteIndex.t +++ b/t/Content/SiteIndex.t @@ -74,8 +74,6 @@ $xmlData = XMLin($output, ); @actual_urls = map { $_->{loc} } @{ $xmlData->{urlset}->{url} }; @expected_urls = map { $session->url->getSiteURL . '/' . $_ } qw{ home getting_started your_next_step documentation join_us site_map hidden_page }; -use Data::Dumper; -diag Dumper \@actual_urls; cmp_deeply( \@actual_urls, \@expected_urls, diff --git a/t/Group.t b/t/Group.t index 3a892517d..6f898e565 100644 --- a/t/Group.t +++ b/t/Group.t @@ -289,7 +289,6 @@ cmp_bag($gB->getGroupsIn(), [$gA->getId, 3], 'Group A is in Group B'); cmp_bag($gA->getGroupsFor(), [$gB->getId], 'Group B contains Group A'); cmp_bag($gA->getGroupsIn(), [3], 'Admin added to group A automatically'); -diag $gA->getId; $gA->addGroups([$gB->getId]); cmp_bag($gA->getGroupsIn(), [3], 'Not allowed to create recursive group loops'); diff --git a/t/Inbox.t b/t/Inbox.t index c43d5c4e9..ea7989b29 100644 --- a/t/Inbox.t +++ b/t/Inbox.t @@ -130,8 +130,6 @@ is(scalar @{ $inbox->getMessagesForUser($admin, '', '', '', 'sentBy='.$session-> is($inbox->getUnreadMessageCount($admin->userId), 4, 'getUnreadMessageCount'); my $messages = $inbox->getMessagesForUser($admin); $messages->[0]->setRead($admin->userId); -note $messages->[0]->getStatus; -note $messages->[0]->isRead; is($inbox->getUnreadMessageCount($admin->userId), 3, '... really tracks unread messages'); #vim:ft=perl diff --git a/t/Shop/ShipDriver.t b/t/Shop/ShipDriver.t index ec589ad64..01095937f 100644 --- a/t/Shop/ShipDriver.t +++ b/t/Shop/ShipDriver.t @@ -354,8 +354,6 @@ cmp_deeply( isa_ok( $driver->get(), 'HASH', 'get returns a hashref if called with no param'); -note explain $driver->get(); - is($driver->get('groupToUse'), 7, '... default group is 7'); $options = $driver->get(); diff --git a/t/rawHrefUrls.t b/t/rawHrefUrls.t index b119fa275..8d9011818 100644 --- a/t/rawHrefUrls.t +++ b/t/rawHrefUrls.t @@ -53,7 +53,6 @@ my $nonRootLink = qr{ sub checkLinks { my ($tag, $attrs) = @_; if ($tag eq 'link' && $attrs->{href}) { - note sprintf '%s: %s', $tag, $attrs->{href}; if ($attrs->{href} !~ $nonRootLink) { $validLinks = 0; }