--- trunk/t/1-lookup.t 2005/07/16 22:57:26 12 +++ trunk/t/1-lookup.t 2005/07/24 14:20:59 30 @@ -33,7 +33,7 @@ ok($lookup->add( $rec ), "add"); -ok($lookup->{'lookup'}, "have lookup hash"); +ok($lookup->{'_lookup_data'}, "have lookup hash"); my $lookup_res = { '800:foo' => [ 'bar' ], @@ -41,7 +41,7 @@ '900:bar' => [ 'FOO', 'foo' ] }; -is_deeply($lookup_res, $lookup->{'lookup'}, "lookup data"); +is_deeply($lookup_res, $lookup->{'_lookup_data'}, "lookup data"); foreach my $k (keys %{ $lookup_res }) { ok(my @l = $lookup->lookup("lookup{$k}"), "lookup{$k}");