From 14ce8c55775aeffb1a1bfc5e3d60b3e29b1aab67 Mon Sep 17 00:00:00 2001 From: "John E. Malmberg" Date: Mon, 21 Nov 2005 16:19:31 -0500 Subject: patch@26180 - t/op/array.t : Can't reset %ENV on VMS From: "John E. Malmberg" Message-ID: <43828033.9040708@qsl.net> p4raw-id: //depot/perl@26186 --- t/op/array.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't') diff --git a/t/op/array.t b/t/op/array.t index 27565de702..3a6a792284 100755 --- a/t/op/array.t +++ b/t/op/array.t @@ -61,7 +61,7 @@ is($r, "0,0"); $bar[2] = '2'; $r = join(',', $#bar, @bar); is($r, "2,0,,2"); -reset 'b'; +reset 'b' if $^O ne 'VMS'; @bar = (); $bar[0] = '0'; $r = join(',', $#bar, @bar); -- cgit v1.2.1