From 9cadeb8af2986f00134a5107e368f32b876aef91 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Tue, 5 Sep 2017 22:39:38 +0200 Subject: [PATCH] Don't use return on Assert::markTestSkipped. --- .../DependencyInjection/Tests/Loader/IniFileLoaderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php b/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php index 003cd714b1..d3c2dfc76f 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php @@ -51,7 +51,7 @@ class IniFileLoaderTest extends TestCase public function testTypeConversionsWithNativePhp($key, $value, $supported) { if (defined('HHVM_VERSION_ID')) { - return $this->markTestSkipped(); + $this->markTestSkipped(); } if (!$supported) {