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 May 17, 2023
1 parent 5125756 commit dea1618
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/RayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,12 +367,12 @@ function getValueOfLastSentContent(string $contentKey)
assertMatchesOsSafeSnapshot($this->client->sentPayloads());
});

it('can sanitize the name of a new screen', function() {
$this->ray->newScreen('__pest_evaluable_this_is_the_test_name');
it('can sanitize the name of a new screen', function () {
$this->ray->newScreen('__pest_evaluable_this_is_the_test_name');

$usedName = $this->client->sentPayloads()[0]['payloads'][0]['content']['name'];
$usedName = $this->client->sentPayloads()[0]['payloads'][0]['content']['name'];

expect($usedName)->toBe('this is the test name');
expect($usedName)->toBe('this is the test name');
});


Expand Down

0 comments on commit dea1618

Please sign in to comment.