Skip to content

Commit

Permalink
Fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Danis committed Sep 15, 2020
1 parent a2efd35 commit 354736d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/.phpunit.result.cache
.idea/
build/
logs/
reports/
Expand Down
3 changes: 1 addition & 2 deletions tests/Functional/Types/StringBindingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ public function testAsciiStringBinding(): void
$statement->bindValue(1, 'test', ParameterType::ASCII_STRING);
$results = $statement->execute()->fetchOne();

self::assertNotFalse($results);
self::assertEquals('varchar', $results[0]);
self::assertEquals('varchar', $results);
}

private function driverSupportsAsciiBinding(): bool
Expand Down

0 comments on commit 354736d

Please sign in to comment.