From d0ba0d193b94eb0d23507bda571574bf2d29eab2 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Fri, 22 Apr 2022 14:42:12 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B03091=20iTopComposerTest=20:=20change=20d?= =?UTF-8?q?eprecated=20PHPUnit=20method=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/application/composer/iTopComposerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/application/composer/iTopComposerTest.php b/test/application/composer/iTopComposerTest.php index 30e66c2a2..e103360aa 100644 --- a/test/application/composer/iTopComposerTest.php +++ b/test/application/composer/iTopComposerTest.php @@ -40,7 +40,7 @@ class iTopComposerTest extends ItopTestCase public function testIsTestDir($sDirName, $bIsTest) { $isTestDir = iTopComposer::IsTestDir($sDirName); - $this->assertInternalType('int', $isTestDir); + $this->assertIsInt($isTestDir); if (true === $bIsTest) { $this->assertTrue(($isTestDir > 0)); } else {