Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche authored and github-actions[bot] committed Feb 1, 2023
1 parent 3204cc9 commit 7bc0c95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Normalizers/JsonNormalizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
MultiData::from('Hello World');
})->throws(CannotCreateData::class);

it("won't create a data object from an integer", function() {
it("won't create a data object from an integer", function () {
MultiData::from(1234);
})->throws(CannotCreateData::class);

it("won't create a data object from a string containing only an integer", function() {
it("won't create a data object from a string containing only an integer", function () {
MultiData::from('1234');
})->throws(CannotCreateData::class);

0 comments on commit 7bc0c95

Please sign in to comment.