Fix failing test and JSON typo

This commit is contained in:
Matthew Ross 2017-03-13 15:17:18 -04:00
parent 5ce10e2839
commit a975d43734
2 changed files with 3 additions and 3 deletions

View File

@ -118,6 +118,6 @@
"settings_selectUser": "Select User",
"settings_selectCategory": "Select Category",
"settings_selectAssignee": "Select Assignee",
"settings_alterByPoints": "Alter color by points",
"settings_alterByPoints": "Alter color by points"
}

View File

@ -69,12 +69,12 @@ describe('AutoActions', () => {
autoActions.newAction.type = 2; // 2 and 3 are the same
autoActions.updateActionSources();
expect(autoActions.actionSources[0][1]).to.equal('Select Category');
expect(autoActions.actionSources[0][1]).to.equal(undefined);
autoActions.newAction.type = 4; // 4 and 5 are the same
autoActions.updateActionSources();
expect(autoActions.actionSources[0][1]).to.equal('Select Assignee');
expect(autoActions.actionSources[0][1]).to.equal(undefined);
});
it('provides a description for a trigger', () => {