Skip to content

Commit

Permalink
tests: Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
tarlepp committed Jul 7, 2019
1 parent 124213f commit 21a1202
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Integration/DTO/ApiKey/ApiKeyPatchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testThatUserGroupsAreExpected(): void
->setRole(new Role('Role 1'));

$userGroup2 = (new UserGroup())
->setName('Group 1')
->setName('Group 2')
->setRole(new Role('Role 2'));

$user = (new ApiKey())
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/DTO/ApiKey/ApiKeyUpdateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testThatUserGroupsAreExpected(): void
->setRole(new Role('Role 1'));

$userGroup2 = (new UserGroup())
->setName('Group 1')
->setName('Group 2')
->setRole(new Role('Role 2'));

$user = (new ApiKey())
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/DTO/User/UserPatchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testThatUserGroupsAreExpected(): void
->setRole(new Role('Role 1'));

$userGroup2 = (new UserGroup())
->setName('Group 1')
->setName('Group 2')
->setRole(new Role('Role 2'));

$user = (new User())
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/DTO/User/UserUpdateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testThatUserGroupsAreExpected(): void
->setRole(new Role('Role 1'));

$userGroup2 = (new UserGroup())
->setName('Group 1')
->setName('Group 2')
->setRole(new Role('Role 2'));

$user = (new User())
Expand Down

0 comments on commit 21a1202

Please sign in to comment.