Remove temporary test diagnostics
Dagfinn Ilmari Mannsåker [Mon, 11 Dec 2017 12:15:13 +0000 (12:15 +0000)]
t/postgresql-rename-table-and-field.t

index f66b7f8..564f7ad 100644 (file)
@@ -8,7 +8,6 @@ use Test::Exception;
 use Test::SQL::Translator;
 use SQL::Translator;
 use SQL::Translator::Diff;
-use Digest;
 
 maybe_plan(undef, 'DBD::Pg');
 
@@ -19,11 +18,6 @@ if ($ENV{DBICTEST_PG_DSN}) {
 else {
     no warnings 'once';
     maybe_plan(undef, 'Test::PostgreSQL');
-    open my $fh, '<:raw', $INC{"Test/PostgreSQL.pm"} or die "No Test::PostgreSQL: $!\n";
-    my $d = Digest->new('MD5');
-    $d->addfile($fh);
-    diag sprintf "Test::PostgreSQL %s found at %s (md5: %s)",
-        Test::PostgreSQL->VERSION, $INC{"Test/PostgreSQL.pm"}, $d->hexdigest;
     $pg_tst = eval { Test::PostgreSQL->new }
         or plan skip_all => "Can't create test database: $Test::PostgreSQL::errstr";
     $dsn = $pg_tst->dsn;