diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-11 07:47:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-11 07:47:03 +0000 |
commit | f088ccfb98b4108ba7825bee976f03b86daf7107 (patch) | |
tree | 09f5578790d55435e74eb6ea7148f2317d4261a2 /modules/simpletest/tests/database_test.test | |
parent | 7b5392b9028bd84d200e7dfff9ef273d6eb82313 (diff) | |
download | brdo-f088ccfb98b4108ba7825bee976f03b86daf7107.tar.gz brdo-f088ccfb98b4108ba7825bee976f03b86daf7107.tar.bz2 |
- Patch #301049 by Josh Waihi, Damien Tournoud, et al: fixed bug with transaction support (on PostgreSQL).
Diffstat (limited to 'modules/simpletest/tests/database_test.test')
-rw-r--r-- | modules/simpletest/tests/database_test.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/database_test.test b/modules/simpletest/tests/database_test.test index 222aa3e10..5df638346 100644 --- a/modules/simpletest/tests/database_test.test +++ b/modules/simpletest/tests/database_test.test @@ -2255,8 +2255,8 @@ class DatabaseTransactionTestCase extends DatabaseTestCase { // on a database that does not actually support transactions, and // the current database does claim to NOT support transactions. $txn = db_transaction(TRUE); + $this->fail('No transaction failure registered.'); } - $this->fail('No transaction failure registered.'); } catch (TransactionsNotSupportedException $e) { $this->pass('Exception thrown for unsupported transactions.'); |