From 9d2fc883b84b61bf93e3fbb1f7fcf77a87a2a9d4 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Wed, 17 Feb 2021 10:31:59 +0100 Subject: [PATCH] Fix test name --- test/setup/SetupUtilsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/setup/SetupUtilsTest.php b/test/setup/SetupUtilsTest.php index 6ccae4a86..47a996bb7 100644 --- a/test/setup/SetupUtilsTest.php +++ b/test/setup/SetupUtilsTest.php @@ -30,16 +30,16 @@ class SetupUtilsTest extends ItopTestCase } /** - * @dataProvider CheckGravizProvider + * @dataProvider CheckGraphvizProvider */ - public function testCheckGraviz($sScriptPath, $iSeverity, $sLabel){ + public function testCheckGraphviz($sScriptPath, $iSeverity, $sLabel){ /** @var \CheckResult $oCheck */ $oCheck = SetupUtils::CheckGraphviz($sScriptPath); $this->assertEquals($iSeverity, $oCheck->iSeverity); $this->assertContains($sLabel, $oCheck->sLabel); } - public function CheckGravizProvider(){ + public function CheckGraphvizProvider(){ if (substr(PHP_OS,0,3) === 'WIN'){ return []; }