Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Dec 20, 2017
1 parent 49f4038 commit cae2732
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/context/__tests__/TelegramContext.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ describe('#sendInvoice', () => {
{ label: 'tax', amount: 11000 },
],
};
it('should to call client.Invoice', async () => {
it('should to call client.sendInvoice', async () => {
const { context, client, session } = setup();

await context.sendInvoice(invoice);
Expand All @@ -424,7 +424,7 @@ describe('#sendInvoice', () => {
});

describe('#sendGame', () => {
it('should to call client.Invoice', async () => {
it('should to call client.sendGame', async () => {
const { context, client, session } = setup();

await context.sendGame('Mario Bros.');
Expand All @@ -442,7 +442,7 @@ describe('#sendGame', () => {
});

describe('#setGameScore', () => {
it('should to call client.Invoice', async () => {
it('should to call client.setGameScore', async () => {
const { context, client, session } = setup();

await context.setGameScore(999);
Expand All @@ -460,7 +460,7 @@ describe('#setGameScore', () => {
});

describe('#getGameHighScores', () => {
it('should to call client.Invoice', async () => {
it('should to call client.getGameHighScores', async () => {
const { context, client, session } = setup();

const response = {
Expand Down

0 comments on commit cae2732

Please sign in to comment.