testcases: use Test::More is_deeply, don't depend on Test::Deep

This commit is contained in:
Maik Fischer
2011-11-22 02:21:47 +01:00
committed by Michael Stapelberg
parent 3a9d94bba4
commit 8d83697cc2
9 changed files with 17 additions and 20 deletions

View File

@ -13,7 +13,7 @@ sub check_order {
my @nums = map { $_->{num} } grep { defined($_->{num}) } @ws;
my @sorted = sort @nums;
cmp_deeply(\@nums, \@sorted, $msg);
is_deeply(\@nums, \@sorted, $msg);
}
check_order('workspace order alright before testing');