Skip to content

Commit

Permalink
test: Fix test name typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorel committed Oct 17, 2019
1 parent f1b8907 commit 5809267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/ngx-sails/src/lib/classes/SailsError.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('SailsError', () => {
});

for (const [prop, exp] of expectations) {
it(`Error ${exp ? 'should' : 'shouldn\t'} be ${prop}`, () => {
it(`Error ${exp ? 'should' : 'shouldn\'t'} be ${prop}`, () => {
expect(Object.getOwnPropertyDescriptor(inst, 'config')[prop]).toBe(<any>exp);
});
}
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-sails/src/lib/classes/SailsResponse.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('SailsResponse', () => {
});

for (const [prop, exp] of expectations) {
it(`Error ${exp ? 'should' : 'shouldn\t'} be ${prop}`, () => {
it(`Error ${exp ? 'should' : 'shouldn\'t'} be ${prop}`, () => {
expect(Object.getOwnPropertyDescriptor(inst, 'config')[prop]).toBe(<any>exp);
});
}
Expand Down

0 comments on commit 5809267

Please sign in to comment.