Skip to content

Commit

Permalink
Fixing test for sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Dec 2, 2010
1 parent cdc4cb9 commit 32af53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/cases/console/shells/schema.test.php
Expand Up @@ -223,7 +223,7 @@ public function testDumpWithFileWriting() {
$this->file = new File(TMP . 'tests' . DS . 'i18n.sql');
$contents = $this->file->read();
$this->assertPattern('/DROP TABLE/', $contents);
$this->assertPattern('/CREATE TABLE `i18n`/', $contents);
$this->assertPattern('/CREATE TABLE.*?i18n/', $contents);
$this->assertPattern('/id/', $contents);
$this->assertPattern('/model/', $contents);
$this->assertPattern('/field/', $contents);
Expand Down

0 comments on commit 32af53a

Please sign in to comment.