From 357201e843d9c027147e9fc25019685f162a3b8a Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Mon, 7 Sep 2015 10:12:42 -0700 Subject: [PATCH] Fix lint errors --- src/components/Image/index.spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Image/index.spec.js b/src/components/Image/index.spec.js index b4d5e29f..b9856235 100644 --- a/src/components/Image/index.spec.js +++ b/src/components/Image/index.spec.js @@ -46,8 +46,8 @@ suite('Image', () => { assert(backgroundImage.indexOf(defaultSource.uri) > -1) }) - test('prop "onError"', function(done) { - this.timeout(5000); + test('prop "onError"', function (done) { + this.timeout(5000) function onError(e) { assert.equal(e.nativeEvent.type, 'error') @@ -60,8 +60,8 @@ suite('Image', () => { />) }) - test('prop "onLoad"', function(done) { - this.timeout(5000); + test('prop "onLoad"', function (done) { + this.timeout(5000) function onLoad(e) { assert.equal(e.nativeEvent.type, 'load')