From 88e5f5429930462fb31b445633366ecac2abe0e0 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Wed, 11 Apr 2007 17:51:02 +0000 Subject: [PATCH] Be a bit more specific in what our second typeglob isn't. It is actually expected to be undef. p4raw-id: //depot/perl@30913 --- t/op/ref.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/op/ref.t b/t/op/ref.t index 6e3c170..ba9aacf 100755 --- a/t/op/ref.t +++ b/t/op/ref.t @@ -467,7 +467,7 @@ TODO: { $name1 = "Left"; $name2 = "Left\0Right"; my $glob2 = *{$name2}; - isnt ($glob1, $glob2, "We get different typeglobs"); + is ($glob1, undef, "We get different typeglobs. In fact, undef"); *{$name1} = sub {"One"}; *{$name2} = sub {"Two"}; -- 2.7.4