diff --git a/hello.js b/hello.js index 6904cd47..edbc432c 100644 --- a/hello.js +++ b/hello.js @@ -1,4 +1,4 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hello World from Tulsa Oklahoma!"; console.log(hello()); exports.hello = hello; diff --git a/hello.test.js b/hello.test.js index 23ec8b99..708dffcb 100644 --- a/hello.test.js +++ b/hello.test.js @@ -1,6 +1,6 @@ const hello = require("./hello"); describe("My hello", () => { test("works", () => { - expect(hello.hello()).toEqual("Hello World from the Office Hours in the terminal!"); + expect(hello.hello()).toEqual("Hello World from Tulsa Oklahoma!"); }); });