Skip to content

Commit

Permalink
Fix truncate tests for postgres.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 6, 2014
1 parent 94f18be commit 4746435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Schema/PostgresSchemaTest.php
Expand Up @@ -900,7 +900,7 @@ public function testTruncateSql() {
]);
$result = $table->truncateSql($connection);
$this->assertCount(1, $result);
$this->assertEquals('TRUNCATE "schema_articles" RESTART IDENTITY', $result[0]);
$this->assertEquals('TRUNCATE "schema_articles" RESTART IDENTITY CASCADE', $result[0]);
}

/**
Expand Down

0 comments on commit 4746435

Please sign in to comment.