Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jun 1, 2022
1 parent 60a640e commit 9385081
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/RdapFacadeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use Spatie\Rdap\Facades\Rdap;
use Spatie\Rdap\Responses\DomainResponse;

it('has a facade to work with rdap', function() {
it('has a facade to work with rdap', function () {
$response = Rdap::domain('google.com');

expect($response)->toBeInstanceOf(DomainResponse::class);
Expand Down
4 changes: 2 additions & 2 deletions tests/RdapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
$this->rdap->domain('flareapp.io');
})->throws(CouldNotFindRdapServer::class);

it('can determine that a domain is supported', function() {
it('can determine that a domain is supported', function () {
expect($this->rdap->domainIsSupported('freek.dev'))->toBeTrue();
});

it('can determine that a domain is not supported', function() {
it('can determine that a domain is not supported', function () {
expect($this->rdap->domainIsSupported('spatie.be'))->toBeFalse();
});

Expand Down

0 comments on commit 9385081

Please sign in to comment.