From: Rafael Kitover Date: Fri, 18 Sep 2009 02:22:38 +0000 (+0000) Subject: column no longer necessary in test X-Git-Tag: v0.08112~14^2~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=515a035cd00ec39fd95dbc940abed9d8ff6a773b;p=dbsrgits%2FDBIx-Class.git column no longer necessary in test --- diff --git a/t/746sybase.t b/t/746sybase.t index afa8560..84ed68a 100644 --- a/t/746sybase.t +++ b/t/746sybase.t @@ -5,14 +5,6 @@ no warnings 'uninitialized'; use Test::More; use Test::Exception; use lib qw(t/lib); - -BEGIN { - require DBICTest::Schema::BindType; - DBICTest::Schema::BindType->add_column( - anint => { data_type => 'integer' } - ); -} - use DBICTest; require DBIx::Class::Storage::DBI::Sybase; @@ -303,8 +295,7 @@ SQL id INT IDENTITY PRIMARY KEY, bytea INT NULL, blob IMAGE NULL, - clob TEXT NULL, - anint INT NULL + clob TEXT NULL ) ],{ RaiseError => 1, PrintError => 0 }); }