aboutsummaryrefslogtreecommitdiff
path: root/t/words.t
diff options
context:
space:
mode:
Diffstat (limited to 't/words.t')
-rw-r--r--t/words.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/words.t b/t/words.t
index a2ca767..609e2ff 100644
--- a/t/words.t
+++ b/t/words.t
@@ -6,9 +6,9 @@ use utf8;
use Test::More tests => 1;
-use List::Filters 'filter';
+use List::Breakdown 'breakdown';
-our $VERSION = 0.05;
+our $VERSION = 0.06;
my @words = qw(foo bar baz quux wibble florb);
my $filters = {
@@ -22,7 +22,7 @@ my $filters = {
},
has_ba => qr/ba/msx,
};
-my %filtered = filter $filters, @words;
+my %filtered = breakdown $filters, @words;
my %expected = (
all => [qw(foo bar baz quux wibble florb)],