We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 348e52e commit cea4ecfCopy full SHA for cea4ecf
tests/Integration/BaseCase.php
@@ -38,9 +38,9 @@ protected function setUp(): void
38
39
$this->configBuilder = (new ConfigBuilder())
40
->withUser('root')
41
- ->withHost('127.0.0.1')
+ ->withHost('0.0.0.0')
42
->withPassword('root')
43
- ->withPort((int) $_ENV['PORT'])
+ ->withPort(3306)
44
->withEventsIgnore($this->getIgnoredEvents());
45
46
$this->connect();
@@ -53,8 +53,6 @@ protected function setUp(): void
53
self::assertInstanceOf(FormatDescriptionEventDTO::class, $this->getEvent());
54
self::assertInstanceOf(QueryDTO::class, $this->getEvent());
55
56
-
57
- echo "Using $binLogServerInfo?->versionName $binLogServerInfo->versionRevision" . PHP_EOL;
58
}
59
60
protected function tearDown(): void
0 commit comments