Skip to content

Commit

Permalink
Fix some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Mar 18, 2017
1 parent 485116b commit c1bd3e4
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/Bus/Events/User/UserWasCreatedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function __construct(User $user)
*/
public function __toString()
{
return 'User was added.';
return 'User was created.';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/Bus/Events/User/UserWasInvitedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
final class UserWasInvitedEvent implements UserEventInterface
{
/**
* The invite that has been added.
* The invite that has been created.
*
* @var \CachetHQ\Cachet\Models\Invite
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use CachetHQ\Tests\Cachet\AbstractTestCase;

/**
* This is the add user command test class.
* This is the create user command test class.
*
* @author James Brooks <james@alt-three.com>
* @author Graham Campbell <graham@alt-three.com>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use CachetHQ\Cachet\Models\User;

/**
* This is the metric point was added event test class.
* This is the metric point was created event test class.
*
* @author James Brooks <james@alt-three.com>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
use CachetHQ\Cachet\Models\User;

/**
* This is the user was added event test class.
* This is the user was created event test class.
*
* @author Graham Campbell <graham@alt-three.com>
* @author James Brooks <james@alt-three.com>
*/
class UserWasCreatedEventTest extends AbstractUserEventTestCase
{
Expand Down

0 comments on commit c1bd3e4

Please sign in to comment.