aboutsummaryrefslogtreecommitdiff
path: root/t/errors.t
diff options
context:
space:
mode:
Diffstat (limited to 't/errors.t')
-rw-r--r--t/errors.t12
1 files changed, 6 insertions, 6 deletions
diff --git a/t/errors.t b/t/errors.t
index 842c344..809b0b3 100644
--- a/t/errors.t
+++ b/t/errors.t
@@ -6,12 +6,12 @@ use utf8;
use Test::More tests => 4;
-use List::Filters 'filter';
+use List::Breakdown 'breakdown';
-our $VERSION = 0.05;
+our $VERSION = 0.06;
my @t = 1 .. 3;
-is( eval { filter { a => undef }, @t } || undef, undef, 'error_notref_undef' );
-is( eval { filter { a => 'a' }, @t } || undef, undef, 'error_notref_def' );
-is( eval { filter { a => [] }, @t } || undef, undef, 'error_badref_array' );
-is( eval { filter { a => \{} }, @t } || undef, undef, 'error_badref_double' );
+is( eval { breakdown { a => undef }, @t } || undef, undef, 'error_notref_undef' );
+is( eval { breakdown { a => 'a' }, @t } || undef, undef, 'error_notref_def' );
+is( eval { breakdown { a => [] }, @t } || undef, undef, 'error_badref_array' );
+is( eval { breakdown { a => \{} }, @t } || undef, undef, 'error_badref_double' );