From c7a7a312e6acc0c319a99e19ee92db85f8011f09 Mon Sep 17 00:00:00 2001
From: Alexander Makarov <sam@rmcreative.ru>
Date: Wed, 15 Oct 2014 12:22:44 +0400
Subject: [PATCH] Fixed schema cache test

---
 tests/unit/framework/db/SchemaTest.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/unit/framework/db/SchemaTest.php b/tests/unit/framework/db/SchemaTest.php
index 61275df..aeaf36e 100644
--- a/tests/unit/framework/db/SchemaTest.php
+++ b/tests/unit/framework/db/SchemaTest.php
@@ -51,7 +51,7 @@ class SchemaTest extends DatabaseTestCase
         $schema->db->enableSchemaCache = true;
         $schema->db->schemaCache = new FileCache();
         $noCacheTable = $schema->getTableSchema('type', true);
-        $cachedTable = $schema->getTableSchema('type', true);
+        $cachedTable = $schema->getTableSchema('type', false);
         $this->assertEquals($noCacheTable, $cachedTable);
     }
 
--
libgit2 0.27.1