From 5c9889e2843f9d4b6afbe2729b852b1922e9afbf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Kucha=C5=99?= <honza.kuchar@grifart.cz>
Date: Sun, 8 May 2016 21:17:41 +0200
Subject: [PATCH] CursorDriverTest: added forgotten parent:: call

---
 tests/Store/PostgresDriver/CursorDriverTest.phpt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/Store/PostgresDriver/CursorDriverTest.phpt b/tests/Store/PostgresDriver/CursorDriverTest.phpt
index 0b77abe..1a32aae 100644
--- a/tests/Store/PostgresDriver/CursorDriverTest.phpt
+++ b/tests/Store/PostgresDriver/CursorDriverTest.phpt
@@ -28,7 +28,8 @@ class CursorDriverTest extends CursorInterfaceTest
 
 		$factory = new CursorDriverFactory($connection);
 		$this->uut = $factory->create($SQL_thousandRowsAscending, true);
-//		parent::setUp();
+
+		parent::setUp();
 	}
 
 	public function tearDown()
@@ -36,7 +37,7 @@ class CursorDriverTest extends CursorInterfaceTest
 		global $connection;
 		$connection->rollback();
 
-//		parent::tearDown();
+		parent::tearDown();
 	}
 
 }
-- 
GitLab