From cb87d7be843bf22fabe81977a11b8c4e31d71ccd Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Tue, 24 Jun 2014 08:40:36 +0200 Subject: [PATCH] fixed typo and test break --- tests/unit/framework/db/pgsql/PostgreSQLConnectionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/framework/db/pgsql/PostgreSQLConnectionTest.php b/tests/unit/framework/db/pgsql/PostgreSQLConnectionTest.php index f9d6e1fa3a..283edfd31e 100644 --- a/tests/unit/framework/db/pgsql/PostgreSQLConnectionTest.php +++ b/tests/unit/framework/db/pgsql/PostgreSQLConnectionTest.php @@ -71,7 +71,7 @@ class PostgreSQLConnectionTest extends ConnectionTest $transaction->commit(); $transaction = $connection->beginTransaction(); - $transaction->setIsolationLevel(Transaction::SERIALIZABLE . ' READ ONLY DEFERABLE'); + $transaction->setIsolationLevel(Transaction::SERIALIZABLE . ' READ ONLY DEFERRABLE'); $transaction->commit(); } }