From ea5d4ff52b21f6d866e99f59df93cf92eccd5e4f Mon Sep 17 00:00:00 2001 From: Moritz Strohm Date: Fri, 14 Jan 2022 14:49:24 +0000 Subject: second fix for BIESt #533 --- tests/unit/lib/classes/IconClassTest.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/unit/lib/classes/IconClassTest.php b/tests/unit/lib/classes/IconClassTest.php index de9d2b2..7659b72 100644 --- a/tests/unit/lib/classes/IconClassTest.php +++ b/tests/unit/lib/classes/IconClassTest.php @@ -24,7 +24,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsImg() { $this->assertEquals( - 'vote', + '', Icon::create('vote', 'clickable')->asImg() ); } @@ -32,7 +32,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsImgWithAddition() { $this->assertEquals( - 'vote+add', + '', Icon::create('vote+add', 'clickable')->asImg() ); } @@ -40,7 +40,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsImgWithSize() { $this->assertEquals( - 'vote+add', + '', Icon::create('vote+add', 'clickable')->asImg(20) ); } @@ -56,7 +56,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsImgWithHspace() { $this->assertEquals( - 'arr_2left', + '', Icon::create('arr_2left', 'clickable')->asImg(['hspace' => 3]) ); } @@ -64,7 +64,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsImgWithClass() { $this->assertEquals( - 'staple', + '', Icon::create('staple', 'info')->asImg(20, ['class' => 'text-bottom']) ); } @@ -81,7 +81,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsInput() { $this->assertEquals( - '', + '', Icon::create('upload', 'clickable')->asInput(20, ['class' => 'text-bottom']) ); } @@ -149,7 +149,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsImgWithoutSize() { $this->assertEquals( - 'vote', + '', Icon::create('vote', 'clickable')->asImg(false) ); } @@ -157,7 +157,7 @@ class IconClassTest extends \Codeception\Test\Unit function testIconCreateAsInputWithoutSize() { $this->assertEquals( - '', + '', Icon::create('upload', 'clickable')->asInput(false) ); } -- cgit v1.0