From 342d09cc48ff213cb5d2423b4fdc2c5532ed9d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Mon, 5 Apr 2021 16:39:16 +0200 Subject: [PATCH] fix fabbot --- tests/Console/ConfigurationResolverTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Console/ConfigurationResolverTest.php b/tests/Console/ConfigurationResolverTest.php index 98f72b7c0ed..df1e9dc4771 100644 --- a/tests/Console/ConfigurationResolverTest.php +++ b/tests/Console/ConfigurationResolverTest.php @@ -205,7 +205,7 @@ public function testResolveConfigFileByPathOfFile() $resolver = $this->createConfigurationResolver(['path' => [$dir.\DIRECTORY_SEPARATOR.'foo.php']]); static::assertSame($dir.\DIRECTORY_SEPARATOR.'.php_cs.dist', $resolver->getConfigFile()); - static::assertInstanceOf('Test1Config', $resolver->getConfig()); + static::assertInstanceOf(\Test1Config::class, $resolver->getConfig()); } public function testResolveConfigFileSpecified() @@ -215,7 +215,7 @@ public function testResolveConfigFileSpecified() $resolver = $this->createConfigurationResolver(['config' => $file]); static::assertSame($file, $resolver->getConfigFile()); - static::assertInstanceOf('Test4Config', $resolver->getConfig()); + static::assertInstanceOf(\Test4Config::class, $resolver->getConfig()); } /**