Skip to content

Commit

Permalink
bot: fix cs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
nikophil authored and kbond committed Jun 20, 2024
1 parent 0989c5d commit 80d67f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/Persistence/GenericFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ public function assert_it_ca_create_object_with_dates(): void
public function it_should_not_create_proxy_for_not_persistable_objects(): void
{
$this->factory()->create(['date' => new \DateTimeImmutable()]);
self::assertFalse(class_exists(ProxyGenerator::proxyClassNameFor(\DateTimeImmutable::class)));
self::assertFalse(\class_exists(ProxyGenerator::proxyClassNameFor(\DateTimeImmutable::class)));
}

/**
Expand Down

0 comments on commit 80d67f6

Please sign in to comment.