Skip to content

Commit

Permalink
Correct quoting in test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
david-dick committed Nov 5, 2024
1 parent 9a41c86 commit 7362397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/01-marionette.t
Original file line number Diff line number Diff line change
Expand Up @@ -5376,7 +5376,7 @@ SKIP: {
my $result = read($handle, my $directory, 2048) or die "Failed to read from temporary file:$!";
ok(!-d $directory, "Firefox::Marionette->new() cleans up the ssh local directory at $directory");
} else {
my $command = join q[ ], $^X, (map { "-I$_" } @INC), '-MFirefox::Marionette', '-e', qq['\\\$f = Firefox::Marionette->new($argument_string); print \\\$f->root_directory();'];
my $command = join q[ ], $^X, (map { "-I$_" } @INC), '-MFirefox::Marionette', '-e', qq['\$f = Firefox::Marionette->new($argument_string); print \$f->root_directory();'];
my $directory = `$command`;
ok(!-d $directory, "Firefox::Marionette->new() cleans up the local directory at $directory");
}
Expand Down

0 comments on commit 7362397

Please sign in to comment.