Skip to content

Commit a60d76e

Browse files
committed
Toss a bogus test; TimToady++ for confirming bogusness.
1 parent cbaf9e0 commit a60d76e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

t/nqp/43-package-var.t

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22

33
# Accessing package variables directly
44

5-
plan(5);
5+
plan(4);
66

77
our $var;
88

99
$GLOBAL::var := 1;
1010
$ABC::def := 2;
1111
@XYZ::ghi[0] := 3;
1212
$GLOBAL::context := 4;
13-
GLOBAL::mysub := { ok(5, 'bare GLOBAL works'); };
1413

1514

1615
ok( $var == 1, '$GLOBAL::var works');
@@ -27,6 +26,3 @@ module XYZ {
2726
}
2827

2928
ok( $*context == 4, 'contextual in GLOBAL works');
30-
31-
mysub();
32-

0 commit comments

Comments
 (0)