summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--t/004-system-wordlist-nocache.t2
-rw-r--r--t/023-is-word-nocache.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/004-system-wordlist-nocache.t b/t/004-system-wordlist-nocache.t
index 7396d51..39b7dd4 100644
--- a/t/004-system-wordlist-nocache.t
+++ b/t/004-system-wordlist-nocache.t
@@ -10,7 +10,7 @@ $word_file = '/usr/dict/words' if -r '/usr/dict/words';
$word_file = '/usr/share/dict/words' if -r '/usr/share/dict/words';
SKIP: {
- skip "Can't find a system word list", 2 if $word_file eq '';
+ skip "Can't find a system word list", 4 if $word_file eq '';
my $wl;
lives_ok { $wl = Games::Word::Wordlist->new($word_file, cache => 0) }
diff --git a/t/023-is-word-nocache.t b/t/023-is-word-nocache.t
index 84fa972..47ada06 100644
--- a/t/023-is-word-nocache.t
+++ b/t/023-is-word-nocache.t
@@ -10,7 +10,7 @@ $word_file = '/usr/dict/words' if -r '/usr/dict/words';
$word_file = '/usr/share/dict/words' if -r '/usr/share/dict/words';
SKIP: {
- skip "Can't find a system word list", 2 if $word_file eq '';
+ skip "Can't find a system word list", 21 if $word_file eq '';
my $wl = Games::Word::Wordlist->new($word_file, cache => 0);
my $result;