Skip to content

Commit

Permalink
Remove qualified name from drop calls
Browse files Browse the repository at this point in the history
  • Loading branch information
amenning committed Apr 6, 2021
1 parent 8952c0c commit 759356c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ci/github/phpunit/.phpunit.result.cache
@@ -0,0 +1 @@
C:37:"PHPUnit\Runner\DefaultTestResultCache":379:{a:2:{s:7:"defects";a:0:{}s:5:"times";a:2:{s:146:"Doctrine\DBAL\Tests\Functional\Driver\OCI8\ResultTest::testTruncatedFetch with data set "it should return all rows if no data invalidation occurs"";d:0.891;s:155:"Doctrine\DBAL\Tests\Functional\Driver\OCI8\ResultTest::testTruncatedFetch with data set "it should convert oci8 data invalidation error to DriverException"";d:0.074;}}}
4 changes: 2 additions & 2 deletions tests/Functional/Driver/OCI8/ResultTest.php
Expand Up @@ -40,11 +40,11 @@ protected function setUp(): void
protected function tearDown(): void
{
$this->connection->executeQuery(sprintf(
'DROP FUNCTION %s.test_oracle_fetch_failure',
'DROP FUNCTION test_oracle_fetch_failure',
$this->connectionParams['user']
));
$this->connection->executeQuery(sprintf(
'DROP TYPE %s.return_numbers',
'DROP TYPE return_numbers',
$this->connectionParams['user']
));

Expand Down

0 comments on commit 759356c

Please sign in to comment.