From: rkinyon Date: Sat, 18 Feb 2006 12:29:08 +0000 (+0000) Subject: Removed assignment to make the test more stringent X-Git-Tag: 0-97~45 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=467f373b362182b3932d4987b5c936554db4da8c;p=dbsrgits%2FDBM-Deep.git Removed assignment to make the test more stringent --- diff --git a/t/06_error.t b/t/06_error.t index 6176ec8..01297e3 100644 --- a/t/06_error.t +++ b/t/06_error.t @@ -1,7 +1,7 @@ ## # DBM::Deep Test ## - +$|++; use strict; use Test::More tests => 6; use Test::Exception; @@ -25,7 +25,6 @@ throws_ok { unlink "t/test.db"; my %hash; tie %hash, 'DBM::Deep', 't/test.db'; - $hash{'foo'} = 'bar'; undef %hash; my @array; @@ -42,7 +41,6 @@ throws_ok { unlink "t/test.db"; my @array; tie @array, 'DBM::Deep', 't/test.db'; - $array[0] = 'bar'; undef @array; my %hash;