From aa155765092856013fca9ab0b3f00ce64eacb606 Mon Sep 17 00:00:00 2001 From: Konrad Oboza Date: Sat, 29 May 2021 12:52:48 +0200 Subject: [PATCH] IBX-385: Fixed tests failing after merge-up (#96) --- .../Collector/JsonComposerLockSystemInfoCollectorTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bundle/Tests/SystemInfo/Collector/JsonComposerLockSystemInfoCollectorTest.php b/src/bundle/Tests/SystemInfo/Collector/JsonComposerLockSystemInfoCollectorTest.php index 95f60686..41d5dff8 100644 --- a/src/bundle/Tests/SystemInfo/Collector/JsonComposerLockSystemInfoCollectorTest.php +++ b/src/bundle/Tests/SystemInfo/Collector/JsonComposerLockSystemInfoCollectorTest.php @@ -125,6 +125,7 @@ public function testCollectJsonFileNotFound(): void public function testCollectLockFileCorrupted(): void { $composerCollectorCorrupted = new JsonComposerLockSystemInfoCollector( + $this->versionStabilityChecker, __DIR__ . '/_fixtures/corrupted_composer.lock', __DIR__ . '/_fixtures/composer.json' ); @@ -139,6 +140,7 @@ public function testCollectLockFileCorrupted(): void public function testCollectJsonFileCorrupted(): void { $composerCollectorCorrupted = new JsonComposerLockSystemInfoCollector( + $this->versionStabilityChecker, __DIR__ . '/_fixtures/composer.lock', __DIR__ . '/_fixtures/corrupted_composer.json' );