From: Peter Rabbitson Date: Mon, 10 Feb 2014 07:58:39 +0000 (+0100) Subject: Remove vestigial unused @INC munge found after a8de639b X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d587f67adadbedf890fdd68147e28f5d002874a5;p=dbsrgits%2FDBIx-Class-Historic.git Remove vestigial unused @INC munge found after a8de639b --- diff --git a/t/74mssql.t b/t/74mssql.t index 243ae0e..263fecb 100644 --- a/t/74mssql.t +++ b/t/74mssql.t @@ -1,13 +1,6 @@ use strict; use warnings; -# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else -BEGIN { - if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) { - unshift @INC, $_ for split /:/, $lib_dirs; - } -} - use Test::More; use Test::Exception; use Scalar::Util 'weaken'; diff --git a/t/inflate/datetime_mssql.t b/t/inflate/datetime_mssql.t index ae97a46..edbac14 100644 --- a/t/inflate/datetime_mssql.t +++ b/t/inflate/datetime_mssql.t @@ -29,13 +29,6 @@ plan skip_all => 'Test needs ' . $dsn3 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_mssql_ado')) or (not $dsn || $dsn2 || $dsn3); -# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else -BEGIN { - if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) { - unshift @INC, $_ for split /:/, $lib_dirs; - } -} - if (not ($dsn || $dsn2 || $dsn3)) { plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN} and/or $ENV{DBICTEST_MSSQL_DSN} and/or '