diff --git a/hello.js b/hello.js index 008839c2..d14971f7 100644 --- a/hello.js +++ b/hello.js @@ -1,3 +1,3 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hola mundo desde Tegucigalpa, Honduras!!"; console.log(hello()); exports.hello = hello; diff --git a/hello.test.js b/hello.test.js index 23ec8b99..35162708 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("Hola mundo desde Tegucigalpa, Honduras!!"); }); });