From: Nigel Metheringham Date: Thu, 23 Oct 2008 14:53:17 +0000 (+0000) Subject: Minor wording fix X-Git-Tag: v0.08240~318 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=131534017afe3163a53a030248cf29cd4a045005;p=dbsrgits%2FDBIx-Class.git Minor wording fix --- diff --git a/t/53delete_related.t b/t/53delete_related.t index e0cfe12..4df8698 100644 --- a/t/53delete_related.t +++ b/t/53delete_related.t @@ -16,7 +16,7 @@ my $artist_cds = $artist->cds->count; cmp_ok($artist_cds, '<', $total_cds, 'need more cds than just related cds'); ok($artist->delete_related('cds')); -cmp_ok($schema->resultset('CD')->count, '==', ($total_cds - $artist_cds), 'too many cds were deleted'); +cmp_ok($schema->resultset('CD')->count, '==', ($total_cds - $artist_cds), 'wrong number of cds were deleted'); $total_cds -= $artist_cds; @@ -26,5 +26,5 @@ my $artist2_cds = $artist2->search_related('cds')->count; cmp_ok($artist2_cds, '<', $total_cds, 'need more cds than related cds'); ok($artist2->delete_related('cds', {title => {like => '%'}})); -cmp_ok($schema->resultset('CD')->count, '==', ($total_cds - $artist2_cds), 'too many cds were deleted'); +cmp_ok($schema->resultset('CD')->count, '==', ($total_cds - $artist2_cds), 'wrong number of cds were deleted');