diff --git a/helloWorld/helloWorld.spec.js b/helloWorld/helloWorld.spec.js index 89cd731..e6030fd 100644 --- a/helloWorld/helloWorld.spec.js +++ b/helloWorld/helloWorld.spec.js @@ -2,6 +2,6 @@ const helloWorld = require('./helloWorld'); describe('Hello World', function() { test('says "Hello, World!"', function() { - expect(helloWorld()).toBe('Hello, World!'); + expect(helloWorld()).toEqual('Hello, World!'); }); });