From: rkinyon Date: Mon, 20 Feb 2006 02:36:35 +0000 (+0000) Subject: Fixed test to reflect reality X-Git-Tag: 0-97~40 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=45a5b35d35f926fdf9c9ec388ac548bf1128e6ef;p=dbsrgits%2FDBM-Deep.git Fixed test to reflect reality --- diff --git a/t/25_tie_return_value.t b/t/25_tie_return_value.t index dfb875a..9e76b7b 100644 --- a/t/25_tie_return_value.t +++ b/t/25_tie_return_value.t @@ -21,8 +21,5 @@ use_ok( 'DBM::Deep' ); my @array; my $obj = tie @array, 'DBM::Deep', 't/test.db'; isa_ok( $obj, 'DBM::Deep' ); - TODO: { - local $TODO = "_init() returns a blessed hashref"; - is( reftype( $obj ), 'ARRAY', "... and its underlying representation is an ARRAY" ); - } + is( reftype( $obj ), 'HASH', "... and its underlying representation is an HASH" ); }