Skip to content

Commit

Permalink
Fixed spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
sourishkrout committed Nov 2, 2018
1 parent ef39dcd commit d7059de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/nodevoto-voting/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class PollServiceServer {
};

implementations.VoteCartoonHalloweenGhost = (call, callback) => {
callback(new Error('Unkown error'), null);
callback(new Error('Unknown error'), null);
};

return implementations;
Expand Down
2 changes: 1 addition & 1 deletion test/nodevoto-voting/api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('api (voting)', () => {
try {
await wrap(impls.VoteCartoonHalloweenGhost)();
} catch(err) {
expect(err.message).equals('Unkown error');
expect(err.message).equals('Unknown error');
}
});

Expand Down
2 changes: 1 addition & 1 deletion test/nodevoto-web/app.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class VotingMock {
}

VoteCartoonHalloweenGhost(args, callback) {
return callback('Unkown error', null);
return callback('Unknown error', null);
}

VoteBatmanSadRain(args, callback) {
Expand Down

0 comments on commit d7059de

Please sign in to comment.