Skip to content

Commit c047f50

Browse files
author
a.dmitryuk
committed
revert
1 parent 126cfa9 commit c047f50

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/PantherTestCaseTrait.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ protected static function createPantherClient(array $options = [], array $kernel
203203
}
204204
}
205205

206-
// @phpstan-ignore-next-line
207206
if (is_a(self::class, KernelTestCase::class, true)) {
208207
static::bootKernel($kernelOptions); // @phpstan-ignore-line
209208
}
@@ -248,7 +247,6 @@ protected static function createHttpBrowserClient(array $options = [], array $ke
248247
self::$httpBrowserClient = new HttpBrowserClient(HttpClient::create($httpClientOptions));
249248
}
250249

251-
// @phpstan-ignore-next-line
252250
if (is_a(self::class, KernelTestCase::class, true)) {
253251
static::bootKernel($kernelOptions); // @phpstan-ignore-line
254252
}

tests/ClientTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ public function testExecuteAsyncScript(): void
282282
const t = document.querySelector(parentArgs[0]).innerText;
283283
callback(t);
284284
}, 100, arguments);
285-
JS, ['.p-1']);
285+
JS
286+
, ['.p-1']);
286287

287288
$this->assertSame('P1', $innerText);
288289
}

0 commit comments

Comments
 (0)