Complexity cleanup [skip ci]

This commit is contained in:
James Cole
2014-12-31 16:45:12 +01:00
parent 8ec8042045
commit 6fa73ee28d
10 changed files with 92 additions and 104 deletions

View File

@@ -155,7 +155,7 @@ class TransactionControllerCest
'post_submit_action' => 'store'
]
);
$I->see('Could not store transaction: This field is mandatory.');
$I->see('Could not store transaction: The description field is required.');
}
public function update(FunctionalTester $I)
@@ -195,7 +195,7 @@ class TransactionControllerCest
'post_submit_action' => 'update'
]
);
$I->see('Could not update transaction: This field is mandatory.');
$I->see('Could not update transaction: The description field is required.');
}
public function updateAndReturn(FunctionalTester $I)

View File

@@ -134,7 +134,7 @@ class UserControllerCest
{
$I->wantTo('reset my password and fail');
$I->amOnPage('/reset/123');
$I->see('Yo no hablo reset code!');
$I->see('No reset code found!');
}
/**