Skip to content

Commit

Permalink
Fix 'Unrecognized escape' warning on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwstauner committed Sep 1, 2013
1 parent b18a4a7 commit 1b8fbfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for Test-Aggregate

0.370 Not Released
- Fix interpolation bug that could cause 'Unrecognized escape'
warning on some platforms.

0.369 2013-08-25
- Don't print warning when exit() is called if it's called from
a child process (if the pid has changed),
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Aggregate.pm
Expand Up @@ -466,7 +466,7 @@ $findbin
if ( $setup ) {
$code .= " $setup->('$test');\n";
}
$code .= qq{ run_this_test_program( $package => "$test", $current_test, $total_tests, $verbose );};
$code .= qq{ run_this_test_program( $package => '$test', $current_test, $total_tests, $verbose );};

if ( $teardown ) {
$code .= " $teardown->('$test');\n";
Expand Down

0 comments on commit 1b8fbfb

Please sign in to comment.