From: Gurusamy Sarathy Date: Wed, 22 Jul 1998 08:04:37 +0000 (+0000) Subject: fix quoting in t/io/inplace.t X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9949743fb3b989b8694b2a5e666ad6a181918a59;p=p5sagit%2Fp5-mst-13.2.git fix quoting in t/io/inplace.t p4raw-id: //depot/perl@1636 --- diff --git a/t/io/inplace.t b/t/io/inplace.t index bef876e..ff410a7 100755 --- a/t/io/inplace.t +++ b/t/io/inplace.t @@ -33,4 +33,4 @@ continue { if (`$CAT .a .b .c` eq "bar\nbar\nbar\n") {print "ok 1\n";} else {print "not ok 1\n";} if (`$CAT .a$^I .b$^I .c$^I` eq "foo\nfoo\nfoo\n") {print "ok 2\n";} else {print "not ok 2\n";} -unlink '.a', '.b', '.c', '.a$^I', '.b$^I', '.c$^I'; +unlink '.a', '.b', '.c', ".a$^I", ".b$^I", ".c$^I";