Skip to content

Commit

Permalink
Tests fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PSkierniewski committed Apr 9, 2016
1 parent 07350f7 commit 8b4542b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/functional/AccountCest.php
Expand Up @@ -64,7 +64,7 @@ public function canChangeEmail(FunctionalTester $I)
$I->see('john@doe.org');
$I->logout();
$I->login('john@doe.org', 'test123');
$I->click('Edit Account', '.user-nav');
$I->amOnPage('/en/account');
$I->see('john@doe.org');
}

Expand Down
2 changes: 1 addition & 1 deletion tests/functional/ContentCest.php
Expand Up @@ -24,7 +24,7 @@ public function canViewArticle(FunctionalTester $I)

$I->canSee($translation->title);
$I->canSee($translation->body);
$I->canSee($user->firstName . ' ' . $user->lastName);
$I->canSee($user->nickName);
$I->canSee(date('d-m-Y', strtotime($content->createdAt)));
}

Expand Down

0 comments on commit 8b4542b

Please sign in to comment.