From 865f33bf80d098f66739b21327da4785e0a89c97 Mon Sep 17 00:00:00 2001 From: Dimitrios Karvounaris Date: Fri, 5 Jun 2020 19:45:58 +0200 Subject: [PATCH] // fixing type check --- src/TestSuite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestSuite.php b/src/TestSuite.php index e3d9f772..b9c232b2 100644 --- a/src/TestSuite.php +++ b/src/TestSuite.php @@ -83,7 +83,7 @@ final class TestSuite $this->afterEach = new AfterEachRepository(); $this->afterAll = new AfterAllRepository(); - $this->rootPath = realpath($rootPath); + $this->rootPath = (string) realpath($rootPath); } /**