Skip to content

Commit

Permalink
update workdir for acceptance coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheron committed Sep 8, 2021
1 parent 0e3c37d commit d32d252
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/codeception.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coverage:
remote: false
c3_url: 'http://dev.local'
cookie_domain: ".mysite.com"
work_dir: '/home/scrutinizer/build/src/'
work_dir: 'src/'
remote_context_options:
http:
timeout: 60
Expand Down
6 changes: 3 additions & 3 deletions src/tests/unit/orm/reverse/DatabaseReversorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ protected function _before() {
}

protected function getCacheDirectory() {
return "cache-tests/";
return "cache/";
}

/**
* Tests DatabaseReversor->createDatabase()
*/
public function testCreateDatabase() {
/*$this->databaseReversor->createDatabase ( "testDb" );
$this->databaseReversor->createDatabase ( "testDb" );
$script = $this->databaseReversor->__toString ();
$this->assertTrue ( UString::contains ( "CREATE DATABASE", $script ) );*/
$this->assertTrue ( UString::contains ( "CREATE DATABASE", $script ) );
}
}

0 comments on commit d32d252

Please sign in to comment.