diff options
Diffstat (limited to 't/comp')
-rw-r--r-- | t/comp/hints.t | 2 | ||||
-rw-r--r-- | t/comp/require.t | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/comp/hints.t b/t/comp/hints.t index 9a08854d86..391287caac 100644 --- a/t/comp/hints.t +++ b/t/comp/hints.t @@ -3,7 +3,7 @@ # Tests the scoping of $^H and %^H BEGIN { - @INC = qw(. ../lib); + @INC = qw(. ../lib ../ext/re); chdir 't'; } diff --git a/t/comp/require.t b/t/comp/require.t index 4eafce4d6b..f817527495 100644 --- a/t/comp/require.t +++ b/t/comp/require.t @@ -3,7 +3,7 @@ BEGIN { chdir 't' if -d 't'; @INC = '.'; - push @INC, '../lib'; + push @INC, '../lib', '../ext/re'; } sub do_require { |