Skip to content

Commit

Permalink
fixed test error
Browse files Browse the repository at this point in the history
  • Loading branch information
schmunk42 committed Jan 18, 2017
1 parent 7b2bce6 commit 18d79b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ services:
depends_on:
- postgres
- mysql
#volumes:
# - ../:/project
volumes:
- ../tests:/project/tests
# Enable for debugging
# - ../framework:/project/framework

mysql:
image: percona:5.7
Expand Down
2 changes: 1 addition & 1 deletion tests/framework/db/sqlite/QueryBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function testCommentTable()
$this->markTestSkipped('Comments are not supported in SQLite');
}

public function testBatchInsert()
public function testBatchInsert($table, $columns, $value, $expected)
{
$db = $this->getConnection();
if (version_compare($db->pdo->getAttribute(\PDO::ATTR_SERVER_VERSION), '3.7.11', '>=')) {
Expand Down

0 comments on commit 18d79b5

Please sign in to comment.