diff options
Diffstat (limited to 't/op/flip.t')
-rwxr-xr-x | t/op/flip.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/flip.t b/t/op/flip.t index 72425da3a2..475f55a8c8 100755 --- a/t/op/flip.t +++ b/t/op/flip.t @@ -17,9 +17,9 @@ if ($y eq '12E0123E0') {print "ok 7\n";} else {print "not ok 7\n";} @a = ('a','b','c','d','e','f','g'); -open(of,'../Makefile'); +open(of,'../Configure'); while (<of>) { - (3 .. 5) && $foo .= $_; + (3 .. 5) && ($foo .= $_); } $x = ($foo =~ y/\n/\n/); |