summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkevin dawson <bowtie@cpan.org>2013-08-21 13:23:59 +0100
committerJames E Keenan <jkeenan@cpan.org>2013-08-22 04:01:31 +0200
commitd3b7c48a73a52e552df408786a386a53e86de795 (patch)
tree432b56d93dc376d55b8761a3b7e8b3e21510f79c
parent26ade5d11086044147a369c8dae69b7972dafd89 (diff)
downloadperl-d3b7c48a73a52e552df408786a386a53e86de795.tar.gz
Locale-Maketext: Swap out base for parent (bowtie)
For: RT #119403
-rw-r--r--dist/Locale-Maketext/t/30_eval_dollar_at.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Locale-Maketext/t/30_eval_dollar_at.t b/dist/Locale-Maketext/t/30_eval_dollar_at.t
index 33581b358a..febc2f1b5c 100644
--- a/dist/Locale-Maketext/t/30_eval_dollar_at.t
+++ b/dist/Locale-Maketext/t/30_eval_dollar_at.t
@@ -3,12 +3,12 @@ use warnings;
{
package TEST;
- use base 'Locale::Maketext';
+ use parent qw(Locale::Maketext);
}
{
package TEST::en;
- use base 'TEST';
+ use parent -norequire, qw(TEST);
our %Lexicon = (
_AUTO => 1,
);