Skip to content

Commit

Permalink
SOme change that could be just for fun
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 29, 2014
1 parent f833fc4 commit 386f7a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/TestCase/Database/ConnectionTest.php
Expand Up @@ -27,13 +27,14 @@ class ConnectionTest extends TestCase {
public function setUp() {
parent::setUp();
$this->connection = ConnectionManager::get('test');
$this->connection->execute('DROP TABLE IF EXISTS things');
}

public function tearDown() {
parent::tearDown();
$this->connection->execute('DROP TABLE IF EXISTS things');
$this->connection->useSavePoints(false);
unset($this->connection);
parent::tearDown();
}

/**
Expand Down

0 comments on commit 386f7a3

Please sign in to comment.