X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F64db.t;h=d9c03aabf6cfc8475bf1c5b6fc0079228254f80e;hb=b8116f33fd47a69427eb9b118d4bb7c1f2be9b4e;hp=47aff4689136628e2a64c8a3d64b153122e0f86c;hpb=ab8481f509e0c74b2dbe61441564c250b457193e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/64db.t b/t/64db.t index 47aff46..d9c03aa 100644 --- a/t/64db.t +++ b/t/64db.t @@ -41,7 +41,6 @@ my $type_info = $schema->storage->columns_info_for('artist'); delete $type_info->{artistid}{size}; delete $type_info->{name}{size}; -delete $type_info->{agent}{size}; my $test_type_info = { 'artistid' => { @@ -52,10 +51,6 @@ my $test_type_info = { 'data_type' => 'varchar', 'is_nullable' => 0, }, - 'agent' => { - 'data_type' => 'integer', - 'is_nullable' => 0, - }, }; is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');