Array tests now pass
[dbsrgits/DBM-Deep.git] / t / 04_array.t
index 24b52ec..3eea452 100644 (file)
@@ -63,7 +63,8 @@ is( $db->fetch(4), 'elem4.1' );
 
 throws_ok {
     $db->[-6] = 'whoops!';
-} qr/Modification of non-creatable array value attempted, subscript -6/, "Correct error thrown";
+} qr/Modification of non-creatable array value attempted, subscript -6/,
+  "Correct error thrown when attempting to modify a non-creatable array value";
 
 my $popped = $db->pop;
 is( $db->length, 4, "... and we have four after popping" );