Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLandauer committed Mar 23, 2024
1 parent c976c10 commit 86ac1ba
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/Tests/ORM/Tools/SchemaValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,7 @@ public function testBigintMappedToStringInt(): void
$class = $this->em->getClassMetadata(BigintMappedToStringInt::class);
$ce = $this->validator->validateClass($class);

if (method_exists(BigIntType::class, 'getName')) { // DBAL 3
$this->assertEquals([], $ce);
} else { // DBAL 4+
$this->assertEquals([], $ce);
}
$this->assertEquals([], $ce); // Same for DBAL 3 and 4+
}

public function testBigintMappedToInt(): void
Expand Down

0 comments on commit 86ac1ba

Please sign in to comment.