diff options
Diffstat (limited to 't/mro/inconsistent_c3_utf8.t')
-rw-r--r-- | t/mro/inconsistent_c3_utf8.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/mro/inconsistent_c3_utf8.t b/t/mro/inconsistent_c3_utf8.t index b7baa3ec5d..4d2b5be47e 100644 --- a/t/mro/inconsistent_c3_utf8.t +++ b/t/mro/inconsistent_c3_utf8.t @@ -3,8 +3,9 @@ BEGIN { unless (-d 'blib') { chdir 't' if -d 't'; - @INC = '../lib'; } + require q(./test.pl); + set_up_inc('../lib'); } use strict; @@ -13,7 +14,7 @@ use warnings; use utf8; use open qw( :utf8 :std ); -require q(./test.pl); plan(tests => 1); +plan(tests => 1); require mro; |