blob: 89822ced61c1202a6edf8c0bf2b736112ab31a92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- t/27sqlite-parser.t.orig Sun May 9 21:02:06 2004
+++ t/27sqlite-parser.t Sun May 9 21:02:33 2004
@@ -13,8 +13,8 @@
{
local $/;
- open my $fh, "<$file" or die "Can't read file '$file': $!\n";
- my $data = <$fh>;
+ open FH, "<$file" or die "Can't read file '$file': $!\n";
+ my $data = <FH>;
my $t = SQL::Translator->new;
parse($t, $data);
|