Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfleming committed Oct 9, 2018
1 parent 0e3fdcb commit c3161c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/execution.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const test = require('ava')
const interval = require('../src/index')

test.cb('User function sholud be called', t => {
test.cb('User function should be called', t => {
t.plan(1)

const userFunc = () => {
Expand All @@ -13,7 +13,7 @@ test.cb('User function sholud be called', t => {
interval(userFunc, 10)
})

test.cb('User function sholud be called exactly the desired number of iterations', t => {
test.cb('User function should be called exactly the desired number of iterations', t => {
t.plan(3)

const userFunc = i => {
Expand Down

0 comments on commit c3161c7

Please sign in to comment.