X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06_error.t;h=01297e337e46451efa22a7bb71755df1ed17d747;hb=467f373b362182b3932d4987b5c936554db4da8c;hp=6176ec81bb961ef933052bdef889233e2e4c8f0c;hpb=c2b918bc2f2918c712581ba368e4d94fc497206a;p=dbsrgits%2FDBM-Deep.git 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;