diff --git a/Libraries/CustomComponents/Navigator/Navigation/__tests__/NavigationEvent-test.js b/Libraries/CustomComponents/Navigator/Navigation/__tests__/NavigationEvent-test.js index 9d3811df6..e9a54290d 100644 --- a/Libraries/CustomComponents/Navigator/Navigation/__tests__/NavigationEvent-test.js +++ b/Libraries/CustomComponents/Navigator/Navigation/__tests__/NavigationEvent-test.js @@ -1,4 +1,3 @@ - /** * Copyright (c) 2015, Facebook, Inc. All rights reserved. * @@ -58,7 +57,7 @@ describe('NavigationEvent', () => { it('recycles', () => { var event1 = NavigationEvent.pool('foo', {}, 123); event1.dispose(); - expect(event1.type).toBe(null); + expect(event1.type).toBeFalsy(); expect(event1.data).toBe(null); expect(event1.target).toBe(null); @@ -67,5 +66,3 @@ describe('NavigationEvent', () => { expect(event2).toBe(event1); }); }); - -