summaryrefslogtreecommitdiff
path: root/t/io/open.t
diff options
context:
space:
mode:
Diffstat (limited to 't/io/open.t')
-rw-r--r--t/io/open.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/io/open.t b/t/io/open.t
index 806639187f..6b1f1d7dc5 100644
--- a/t/io/open.t
+++ b/t/io/open.t
@@ -267,7 +267,7 @@ SKIP: {
open($fh1{k}, "TEST");
gimme($fh1{k});
- like($@, qr/<\$fh1{...}> line 1\./, "autoviv fh package helem");
+ like($@, qr/<\$fh1\{...}> line 1\./, "autoviv fh package helem");
my @fh2;
open($fh2[0], "TEST");
@@ -277,7 +277,7 @@ SKIP: {
my %fh3;
open($fh3{k}, "TEST");
gimme($fh3{k});
- like($@, qr/<\$fh3{...}> line 1\./, "autoviv fh lexical helem");
+ like($@, qr/<\$fh3\{...}> line 1\./, "autoviv fh lexical helem");
}
SKIP: {