Skip to content
Snippets Groups Projects
Commit 915cc620 authored by Daniel Hürtgen's avatar Daniel Hürtgen
Browse files

BUGFIX: Fix factory test to be compatible with php <= 5.4

parent 9952aa3d
Branches
Tags
No related merge requests found
......@@ -21,7 +21,6 @@ namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\PHPCodeSniffer\Standards;
* 02110-1301, USA.
*/
use Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\Standard;
use Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\Standards\Factory;
/**
......@@ -50,6 +49,6 @@ class FactoryTest extends \PHPUnit_Framework_TestCase
{
$standard = $this->fixture->create('foo');
$this->assertInstanceOf(Standard::class, $standard);
$this->assertInstanceOf('Higidi\ComposerPhpCSStandardsPlugin\PHPCodeSniffer\Standard', $standard);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment