Skip to content

Commit

Permalink
rector
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichel committed Nov 28, 2024
1 parent c1a5d70 commit 2808fa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/Mage/Catalog/Helper/Product/UrlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testGetConvertTable(): void
public function testGetConvertTableCustom(): void
{
$result = $this->subject->getConvertTableCustom();
$this->assertSame(0, count($result));
$this->assertCount(0, $result);
}

/**
Expand All @@ -62,7 +62,7 @@ public function testGetConvertTableCustom(): void
public function testGetConvertTableShort(): void
{
$result = $this->subject->getConvertTableShort();
$this->assertSame(4, count($result));
$this->assertCount(4, $result);
}

/**
Expand Down

0 comments on commit 2808fa9

Please sign in to comment.