Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
yordadev authored and github-actions[bot] committed Jun 28, 2024
1 parent eddc3ee commit bde132a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Services/UrlServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function it_can_successfully_attempt_to_verify_password()
->withPassword('password')
->build();

$identifier = str_replace($this->base .'/v1/', '', $url);
$identifier = str_replace($this->base.'/v1/', '', $url);
$shortUrl = UrlService::attempt($identifier, $this->base, 'password');

$this->assertTrue($plain_text == $shortUrl->plain_text);
Expand All @@ -149,7 +149,7 @@ public function it_can_successfully_attempt_to_verify_password_and_fail()

$identifier = str_replace($this->base, '', $url);

$this->assertNull(UrlService::attempt($identifier, $domain,'not_password'));
$this->assertNull(UrlService::attempt($identifier, $domain, 'not_password'));
}

/**
Expand Down

0 comments on commit bde132a

Please sign in to comment.