@@ -32,27 +32,27 @@ describe('Node', () => {
3232} )
3333
3434describe ( 'get' , ( ) => {
35- it ( 'should throw an error ifimage is not a string, Buffer, or fs.ReadStream' , ( ) => {
35+ it ( 'should throw an error ifdata is not a string, Buffer, or fs.ReadStream' , ( ) => {
3636expect ( ( ) => get ( { } , ( ) => { } ) ) . to . throw ( Error )
3737} )
3838
3939it ( 'should throw an error if callback is not a function' , ( ) => {
4040expect ( ( ) => get ( 'test.jpg' , null ) ) . to . throw ( Error )
4141} )
4242
43- it ( 'should callprovided callback with an ImageData instance when given a path' , ( ) => {
43+ it ( 'should callthe callback with an ImageData instance when given a path' , ( ) => {
4444get ( imagePath , ( error , data ) => {
4545assert . instanceOf ( data , ImageData )
4646} )
4747} )
4848
49- it ( 'should callprovided callback with an ImageData instance when given a Buffer' , ( ) => {
49+ it ( 'should callthe callback with an ImageData instance when given a Buffer' , ( ) => {
5050get ( imageBuffer , ( error , data ) => {
5151assert . instanceOf ( data , ImageData )
5252} )
5353} )
5454
55- it ( 'should callprovided callback with an ImageData instance when given a ReadStream' , ( ) => {
55+ it ( 'should callthe callback with an ImageData instance when given a ReadStream' , ( ) => {
5656get ( imageReadStream , ( error , data ) => {
5757assert . instanceOf ( data , ImageData )
5858} )
@@ -78,7 +78,7 @@ describe('Node', () => {
7878} )
7979
8080describe ( 'getSync' , ( ) => {
81- it ( 'should throw an error ifimage is not a string or Buffer' , ( ) => {
81+ it ( 'should throw an error ifdata is not a string or Buffer' , ( ) => {
8282expect ( ( ) => getSync ( [ ] ) ) . to . throw ( Error )
8383} )
8484