From 4fbabf3a9fbdfecf548528895a95f194ffc520e2 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 15 Dec 2011 22:22:16 +0100 Subject: [PATCH] replace deprecated Test::YAML::Meta by equivalent Test::CPAN::Meta::YAML --- t/91-meta.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/91-meta.t b/t/91-meta.t index 2f98627..09447c1 100644 --- a/t/91-meta.t +++ b/t/91-meta.t @@ -2,10 +2,10 @@ use strict; use warnings; use Test::More; -eval 'use Test::YAML::Meta'; -plan skip_all => "Test::YAML::Meta required to test META.yml" if $@; -plan skip_all => "Test::YAML::Meta v0.13 required to test META.yml correctly" - if $Test::YAML::Meta::VERSION < 0.13; +eval 'use Test::CPAN::Meta::YAML'; +plan skip_all => "Test::CPAN::Meta::YAML required to test META.yml" if $@; +plan skip_all => "Test::CPAN::Meta::YAML v0.13 required to test META.yml correctly" + if $Test::CPAN::Meta::YAML::VERSION < 0.13; meta_yaml_ok(); -- 2.30.0