From da7582d32976edd151ea76dd05fcee05067d9e41 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 7 Jul 2016 19:43:03 +0200 Subject: [PATCH] Typo fix: s/$booleanTrue/$booleanFalse (C&P mistake) --- tests/Doctrine/Tests/ORM/UnitOfWorkTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php b/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php index b26fce19f..67121e1a4 100644 --- a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php +++ b/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php @@ -419,7 +419,7 @@ class UnitOfWorkTest extends OrmTestCase 'empty strings, two fields' => [$emptyStrings, ' '], 'non-empty strings, two fields' => [$nonEmptyStrings, $nonEmptyStrings->id1 . ' ' . $nonEmptyStrings->id2], 'boolean true' => [$booleanTrue, '1'], - 'boolean false' => [$booleanTrue, ''], + 'boolean false' => [$booleanFalse, ''], ]; } }