chore: skips parallel testing

This commit is contained in:
Nuno Maduro
2023-04-13 12:23:17 +01:00
parent 0064f3fdff
commit 41cdb5f01b
8 changed files with 19 additions and 12 deletions

View File

@ -211,7 +211,8 @@ final class TeamCityLogger
if ($this->withoutDuration) {
$reflector = new ReflectionClass($telemetry);
$property = $reflector->getProperty('snapshot');
$property = $reflector->getProperty('current');
$property->setAccessible(true);
$snapshot = $property->getValue($telemetry);
assert($snapshot instanceof Snapshot);