Converted to use the intermediate keyloc so that keys work under transactions
[dbsrgits/DBM-Deep.git] / t / 04_array.t
index e5babd3..e916028 100644 (file)
@@ -203,9 +203,8 @@ is($returned[0], "middle ABC");
 
 $db->[0] = [ 1 .. 3 ];
 $db->[1] = { a => 'foo' };
-is( $db->[1]->fetch('a'), 'foo', "Reuse of same space with hash successful" );
 is( $db->[0]->length, 3, "Reuse of same space with array successful" );
-
+is( $db->[1]->fetch('a'), 'foo', "Reuse of same space with hash successful" );
 # Test autovivification
 
 $db->[9999]{bar} = 1;