Skip to content

Commit

Permalink
style: resolve style guide violations
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsANameToo authored and actions-user committed Dec 19, 2024
1 parent 66693cd commit 263acb3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Unit/HelpersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class HelpersTest extends TestCase
/** @test */
public function it_should_trim_hex_values_properly(): void
{
$this->assertEquals('0123', Helpers::removeLeadingHexZero('0x0123'));
$this->assertEquals('0123', Helpers::removeLeadingHexZero('0123'));
$this->assertEquals('1234', Helpers::removeLeadingHexZero('0x1234'));
$this->assertEquals('0000', Helpers::removeLeadingHexZero('0x0000'));
$this->assertSame('0123', Helpers::removeLeadingHexZero('0x0123'));
$this->assertSame('0123', Helpers::removeLeadingHexZero('0123'));
$this->assertSame('1234', Helpers::removeLeadingHexZero('0x1234'));
$this->assertSame('0000', Helpers::removeLeadingHexZero('0x0000'));
}

/**
Expand Down

0 comments on commit 263acb3

Please sign in to comment.