Skip to content

Commit 67b8e97

Browse files
committed
Reverting some unrelated changes
1 parent 1520ca7 commit 67b8e97

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

my.cnf

-5
This file was deleted.

phpunit.xml

-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,4 @@
1515
<directory suffix=".php">src/</directory>
1616
</include>
1717
</source>
18-
<php>
19-
<env name="PORT" value="3306"/>
20-
</php>
2118
</phpunit>

tests/Integration/BaseCase.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ protected function setUp(): void
4545

4646
$this->connect();
4747

48-
$binLogServerInfo = $this->mySQLReplicationFactory?->getServerInfo();
49-
50-
if ($binLogServerInfo?->versionRevision >= 8 && $binLogServerInfo?->isGeneric()) {
48+
if ($this->mySQLReplicationFactory?->getServerInfo()->versionRevision >= 8 && $this->mySQLReplicationFactory?->getServerInfo()->isGeneric()) {
5149
self::assertInstanceOf(RotateDTO::class, $this->getEvent());
5250
}
5351
self::assertInstanceOf(FormatDescriptionEventDTO::class, $this->getEvent());

0 commit comments

Comments
 (0)