Skip to content

Commit cf2d66f

Browse files
author
Leon Helmus
committed
Changed class in phpunit test.
1 parent 858665c commit cf2d66f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/InstallerPluginTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Mediact\CodingStandard\PhpStorm\Patcher\ConfigPatcherInterface;
1515
use org\bovigo\vfs\vfsStream;
1616
use PHPUnit\Framework\TestCase;
17-
use Mediact\CodingStandard\PhpStorm\Plugin;
17+
use Mediact\CodingStandard\PhpStorm\InstallerPlugin;
1818

1919
/**
2020
* @coversDefaultClass \Mediact\CodingStandard\PhpStorm\InstallerPlugin
@@ -30,7 +30,7 @@ public function testGetSubscribedEvents()
3030
{
3131
$this->assertInternalType(
3232
'array',
33-
Plugin::getSubscribedEvents()
33+
InstallerPlugin::getSubscribedEvents()
3434
);
3535
}
3636

@@ -82,7 +82,7 @@ public function testOnNewCodeEvent()
8282
->method('patch')
8383
->with($this->isInstanceOf(EnvironmentInterface::class));
8484

85-
$plugin = new Plugin($patcher);
85+
$plugin = new InstallerPlugin($patcher);
8686
$plugin->onNewCodeEvent($event);
8787
}
8888
}

0 commit comments

Comments
 (0)