From d537a10d1333f5ad356bee787fddca2a9b2df9e9 Mon Sep 17 00:00:00 2001 From: Jaime Date: Sat, 11 Jul 2026 16:52:12 -0600 Subject: [PATCH] Change expected console log output in test the exercise says you need to return 's' but the test expects 'grip' --- modules/31-advanced-strings/30-symbols/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/31-advanced-strings/30-symbols/test.js b/modules/31-advanced-strings/30-symbols/test.js index 3db33fa0..648d01be 100644 --- a/modules/31-advanced-strings/30-symbols/test.js +++ b/modules/31-advanced-strings/30-symbols/test.js @@ -8,5 +8,5 @@ test('symbols', async () => { const firstArg = consoleLogSpy.mock.calls.join('\n'); - expect(firstArg).toBe('grip'); + expect(firstArg).toBe('s'); });