diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-22 08:04:37 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-22 08:04:37 +0000 |
commit | 9949743fb3b989b8694b2a5e666ad6a181918a59 (patch) | |
tree | ee7a89f416e9d802600d358fcc6b338195841196 | |
parent | 103a9d1588db80145c6682742c60a9b743493535 (diff) | |
download | perl-9949743fb3b989b8694b2a5e666ad6a181918a59.tar.gz |
fix quoting in t/io/inplace.t
p4raw-id: //depot/perl@1636
-rwxr-xr-x | t/io/inplace.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/inplace.t b/t/io/inplace.t index bef876e136..ff410a7b5f 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"; |