diff --git a/tests/Store/PostgresDriver/CursorDriverTest.phpt b/tests/Store/PostgresDriver/CursorDriverTest.phpt
index 0b77abea0470042e60e30d653dd4506be11b78f0..1a32aae3a3e98f0a0dc40314b1696eaf9ff4ff73 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();
 	}
 
 }