File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ describe("tinify", function() {
200
200
const source = tinify . fromBuffer ( "png file" )
201
201
assert . instanceOf ( source , tinify . Source )
202
202
203
- /* We must return buffer in order to const mocha evaluate the promise and
203
+ /* We must return buffer in order to let mocha evaluate the promise and
204
204
make sure we wait for this request to complete. */
205
205
return source . toBuffer ( )
206
206
} )
@@ -223,7 +223,7 @@ describe("tinify", function() {
223
223
const source = tinify . fromFile ( dummyFile )
224
224
assert . instanceOf ( source , tinify . Source )
225
225
226
- /* We must return buffer in order to const mocha evaluate the promise and
226
+ /* We must return buffer in order to let mocha evaluate the promise and
227
227
make sure we wait for this request to complete. */
228
228
return source . toBuffer ( )
229
229
} )
@@ -246,7 +246,7 @@ describe("tinify", function() {
246
246
const source = tinify . fromUrl ( "http://example.com/test.jpg" )
247
247
assert . instanceOf ( source , tinify . Source )
248
248
249
- /* We must return buffer in order to const mocha evaluate the promise and
249
+ /* We must return buffer in order to let mocha evaluate the promise and
250
250
make sure we wait for this request to complete. */
251
251
return source . toBuffer ( )
252
252
} )
You can’t perform that action at this time.
0 commit comments