Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
2amjsouza committed Dec 8, 2023
1 parent 88e58de commit 2184ebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/LaravelQrCodeFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testCreateGradientQrCode()
$foreground2
)
->writeString();

file_put_contents(codecept_data_dir('blade/qrcode-gradient.png'), $qrCode);
$uri = file_get_contents(codecept_data_dir('blade/qrcode-gradient.png'));

$this->assertEquals(
Expand All @@ -79,7 +79,7 @@ public function testCreateGradientQrCode()
Gradient::GRADIENT_RADIAL
)
->writeString();

file_put_contents(codecept_data_dir('blade/qrcode-gradient-radial.png'), $qrCodeRadial);
$uri = file_get_contents(codecept_data_dir('blade/qrcode-gradient-radial.png'));

$this->assertEquals(
Expand Down

0 comments on commit 2184ebe

Please sign in to comment.