Skip to content

Commit

Permalink
Fix test for ignored keyword patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 29, 2024
1 parent b53ee10 commit 26ad35b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/command_learn.t
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ subtest 'Snippets added' => sub {
}
like $buffer, qr/Exporting pattern 1/, 'first pattern';
like $buffer, qr/Exporting pattern 2/, 'second pattern';
like $buffer, qr/Exported 6 patterns/, 'six patterns exported';
like $buffer, qr/Exported 4 patterns/, 'six patterns exported';

my $good = $dir->child('good')->list;
is $good->size, 7, 'seven files';
is $good->size, 5, 'seven files';
like $good->[1]->slurp, qr/Apache License/, 'right content';
};

Expand Down

0 comments on commit 26ad35b

Please sign in to comment.