Skip to content

Commit

Permalink
chore(karma): fix lint errors in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Mar 21, 2018
1 parent 532dc0c commit 68db0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ describe('Pipeline Trigger: PipelineTriggerOptionsCtrl', function() {
}
return $q.when(executions);
});
spyOn(executionsTransformer, "addBuildInfo");
spyOn(executionsTransformer, 'addBuildInfo');

this.initialize();
$scope.$digest();
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/customMatchers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ beforeEach(() => {
if (node !== undefined) {
actual = node.text().trim().replace(/\s+/g, ' ');
}
const result: jasmine.CustomMatcherResult = {pass: expected === actual};
const result: jasmine.CustomMatcherResult = { pass: expected === actual };
if (result.pass) {
result.message = `Expected ${expected}`;
} else {
Expand Down

0 comments on commit 68db0ea

Please sign in to comment.