- Fixes PHP unit test

- Fails JS unit test to check if CircleCI will detect it
This commit is contained in:
Vlad
2016-08-29 13:51:24 -04:00
parent 3734ac578d
commit d61c6dff58
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ define([
});
it('has text preceding categories', function () {
expect(model.get('categoriesPrecededBy')).to.be.a('string');
expect(model.get('categoriesPrecededBy')).to.be.a('boolean');
});
it('has a link or a button type for read more', function () {

View File

@@ -14,7 +14,7 @@ class SetupTest extends MailPoetTest {
expect($response->status)->equals(APIResponse::STATUS_OK);
$signup_confirmation = Setting::getValue('signup_confirmation.enabled');
expect($signup_confirmation)->false();
expect($signup_confirmation)->true();
}
function _after() {