From c4ed6e7737b88ceb3a683040b05941a2de67b0da Mon Sep 17 00:00:00 2001 From: Stig Sandbeck Mathisen Date: Sat, 4 Oct 2014 20:16:59 +0200 Subject: [PATCH] remove shell quoting, it is not needed --- t/test.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/test.t b/t/test.t index 0c4f6730..0f7085f9 100644 --- a/t/test.t +++ b/t/test.t @@ -81,7 +81,7 @@ sub process_file { } elsif ( $interpreter =~ m{gawk} ) { ok( check_file_with( - [ 'gawk', '--source', "'BEGIN { exit(0) } END { exit(0) }'", + [ 'gawk', '--source', 'BEGIN { exit(0) } END { exit(0) }', '--file', $file ] ),