diff --git a/01_helloWorld/README.md b/01_helloWorld/README.md index e79ae19..17f7110 100644 --- a/01_helloWorld/README.md +++ b/01_helloWorld/README.md @@ -13,7 +13,7 @@ Let's look at the spec file first: const helloWorld = require('./helloWorld'); describe('Hello World', function() { - test('says hello world', function() { + test('says "Hello, World!"', function() { expect(helloWorld()).toEqual('Hello, World!'); }); });