We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1520ca7 commit 67b8e97Copy full SHA for 67b8e97
my.cnf
phpunit.xml
@@ -15,7 +15,4 @@
15
<directory suffix=".php">src/</directory>
16
</include>
17
</source>
18
- <php>
19
- <env name="PORT" value="3306"/>
20
- </php>
21
</phpunit>
tests/Integration/BaseCase.php
@@ -45,9 +45,7 @@ protected function setUp(): void
45
46
$this->connect();
47
48
- $binLogServerInfo = $this->mySQLReplicationFactory?->getServerInfo();
49
-
50
- if ($binLogServerInfo?->versionRevision >= 8 && $binLogServerInfo?->isGeneric()) {
+ if ($this->mySQLReplicationFactory?->getServerInfo()->versionRevision >= 8 && $this->mySQLReplicationFactory?->getServerInfo()->isGeneric()) {
51
self::assertInstanceOf(RotateDTO::class, $this->getEvent());
52
}
53
self::assertInstanceOf(FormatDescriptionEventDTO::class, $this->getEvent());
0 commit comments