From 39a3c4d185dc5f1c16a466e4a887d7be14886766 Mon Sep 17 00:00:00 2001 From: Kathleen Weaver Date: Fri, 28 May 2021 13:27:47 -0500 Subject: [PATCH] corrected typo --- tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.js b/tests.js index a8b495d..1e636b5 100644 --- a/tests.js +++ b/tests.js @@ -24,7 +24,7 @@ it('should be a defined function', () => { expect(typeof concat).toBe('function'); }) - it('should return a string when passed to strings', () => { + it('should return a string when passed two strings', () => { expect(typeof concat("hello", "world")).toBe('string') }) it('should return "helloworld" when passed "hello" and "world" as the two inputs.', () => {