Skip to content

Commit

Permalink
Fixed minor issues in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Feb 27, 2019
1 parent c62eb94 commit fb8c349
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" bootstrap="tests/_bootstrap.php">
<phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/_bootstrap.php">
<testsuites>
<testsuite name="Functional Test Suite">
<directory>./tests/functional/</directory>
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ protected function tearDown()

public function testInsert()
{
$this->command->insert($this->table, $this->columns);
$res = $this->command->insert($this->table, $this->columns);
$this->assertInstanceOf(Command::class, $res);
}
}

0 comments on commit fb8c349

Please sign in to comment.