From 98502d4613e3fc48ac67543a580dc3ebdd69f4b4 Mon Sep 17 00:00:00 2001 From: Oliver Hader Date: Wed, 20 Jul 2022 21:44:28 +0200 Subject: [PATCH] Assert ReconcilerTest::arrayReferencesAreHandled reaches the end --- tests/TypeReconciliation/ReconcilerTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TypeReconciliation/ReconcilerTest.php b/tests/TypeReconciliation/ReconcilerTest.php index da0066f384a..ac7ceba270d 100644 --- a/tests/TypeReconciliation/ReconcilerTest.php +++ b/tests/TypeReconciliation/ReconcilerTest.php @@ -306,5 +306,7 @@ public function arrayReferencesAreHandled(): void $codebase->addFilesToAnalyze(['somefile.php' => 'somefile.php']); $codebase->scanFiles(); $this->file_analyzer->analyze($this->file_analyzer->context); + // just asserting this test reaches the end + self::assertTrue(true); } }