From 6564f952606f53fef9ff462bc80add23c372b32c Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 15 Jan 2015 21:17:25 +0100 Subject: [PATCH] Typo fix (region should be named `'bar'`, not `'foo'` --- tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php b/tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php index 59eb87085..9ecf0e1a4 100644 --- a/tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php +++ b/tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php @@ -274,7 +274,7 @@ class DefaultCacheFactoryTest extends OrmTestCase 'usage' => ClassMetadata::CACHE_USAGE_READ_ONLY, )); $barRegion = $factory->getRegion(array( - 'region' => 'foo', + 'region' => 'bar', 'usage' => ClassMetadata::CACHE_USAGE_READ_ONLY, ));