Skip to content

Commit

Permalink
fix fabbot
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Apr 5, 2021
1 parent fb0c85f commit 342d09c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Console/ConfigurationResolverTest.php
Expand Up @@ -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()
Expand All @@ -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());
}

/**
Expand Down

0 comments on commit 342d09c

Please sign in to comment.