From c160970bf1c20acfde223ceff5d96c5dc3d3fe66 Mon Sep 17 00:00:00 2001 From: nikosBCG Date: Thu, 31 Oct 2024 18:52:35 -0400 Subject: [PATCH] Changed the hello.test.js file --- hello.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.test.js b/hello.test.js index 23ec8b9..093e9f4 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 Boston!"); }); });