Subject: | $dbh->{AutoCommit} is not a good test name |
There seems to be a mistake in 10examp.t. Since all the other
calls to ok() only pass 1 argument this one (see attached patch)
should as well.
Patch relative to DBI-1.48.
--- t/10examp.t.orig 2005-03-14 15:17:12.000000000 +0100
+++ t/10examp.t 2005-11-08 13:29:26.000000000 +0100
@@ -494,7 +494,7 @@
ok(!$dbh->{BegunWork});
ok($dbh->begin_work);
-ok(!$dbh->{AutoCommit}, $dbh->{AutoCommit});
+ok(!$dbh->{AutoCommit});
ok($dbh->{BegunWork});
$dbh->commit;