Skip to content

Commit

Permalink
fix assert for exception it did change using odbc
Browse files Browse the repository at this point in the history
  • Loading branch information
zajca committed Apr 13, 2022
1 parent 237349a commit f4ec8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/Teradata/SqlBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function testGetDropTableIfExistsCommand(): void
);
$this->connection->executeStatement($sql);
} catch (DriverException $e) {
$this->assertContains('Base table or view not found', $e->getMessage());
$this->assertContains('import-export-test_test\' does not exist', $e->getMessage());
}

// create table
Expand Down

0 comments on commit f4ec8d7

Please sign in to comment.