summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2012-08-20 12:09:23 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2012-08-20 12:09:23 +0100
commit288edf55c8e815a2b041f038bcd3b6b2cc57f331 (patch)
tree6c7fdff3bd8b587264e5c8ece0caa51b4fbfaead
parent8047cbe154f7267ca587d53d883872d6288cbe2b (diff)
downloadperl-288edf55c8e815a2b041f038bcd3b6b2cc57f331.tar.gz
Fix Module::CoreList test - TieHashDelta is to be expected too nowv5.17.3
-rw-r--r--dist/Module-CoreList/t/find_modules.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/Module-CoreList/t/find_modules.t b/dist/Module-CoreList/t/find_modules.t
index 4dbb8c26fc..1e814854d6 100644
--- a/dist/Module-CoreList/t/find_modules.t
+++ b/dist/Module-CoreList/t/find_modules.t
@@ -19,5 +19,6 @@ is_deeply([ Module::CoreList->find_modules(qr/Test::H.*::.*s/, 5.006001, 5.00700
[ qw(Test::Harness::Assert Test::Harness::Straps) ],
'qr/Test::H.*::.*s/ at 5.006001 and 5.007003');
-is_deeply([ Module::CoreList::find_modules(qr/Module::CoreList/) ], [ qw(Module::CoreList) ],
+is_deeply([ Module::CoreList::find_modules(qr/Module::CoreList/) ],
+ [ qw(Module::CoreList Module::CoreList::TieHashDelta) ],
'Module::CoreList functional' );