Skip to content

Commit

Permalink
Follow convention for env var naming for test vars
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Mar 19, 2018
1 parent 421d2b0 commit 7158320
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -161,7 +161,7 @@ explains briefly how to get started contributing documentation.

# ENV VARS

Set `PERL6_DOC_TEST_VERSBOSE` to a true value to display verbose messages during test suite run.
- `P6_DOC_TEST_VERSBOSE` to a true value to display verbose messages during test suite run.
Helpful when debugging failing test suite.

# LICENSE
Expand Down
2 changes: 1 addition & 1 deletion t/pod-valid.t
Expand Up @@ -32,7 +32,7 @@ for @files -> $file {
my $p = Proc::Async.new($*EXECUTABLE-NAME, '--doc', $file);
$p.stdout.tap: {;};
$p.stderr.tap: {
%*ENV<PERL6_DOC_TEST_VERSBOSE> and diag "$file STDERR: $_";
%*ENV<P6_DOC_TEST_VERSBOSE> and diag "$file STDERR: $_";
%data{$file} = 1;
}
push @jobs: $p.start;
Expand Down

0 comments on commit 7158320

Please sign in to comment.