Skip to content

Commit

Permalink
Fix test failures caused by PERL6LIB deprecation.
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 26, 2024
1 parent b223c2a commit 8490d63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/lib/AkeTester.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ sub test-run($description, *@args,
$cwd //= CALLERS::($_);
# TODO ↓ any better way ?
$env = %(|$env,
PATH => {$*CWD.add: bin}:{$env<PATH> // },
PERL6LIB => {$*CWD.add: lib},{$env<PERL6LIB> // },
PATH => {$*CWD.add: bin}:{$env<PATH> // },
RAKULIB => {$*CWD.add: lib},{$env<RAKULIB> // },
);

subtest $description, {
Expand Down

0 comments on commit 8490d63

Please sign in to comment.