From ff13cea18cdef971495d2436deb83ad6a44b10b0 Mon Sep 17 00:00:00 2001 From: Osmar Montesinos Date: Mon, 8 Jan 2024 10:04:22 -0500 Subject: [PATCH] FIX dot in const --- projects/01-text-analyzer/test/analyzer.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/01-text-analyzer/test/analyzer.spec.js b/projects/01-text-analyzer/test/analyzer.spec.js index 7fd393355..d8498646e 100644 --- a/projects/01-text-analyzer/test/analyzer.spec.js +++ b/projects/01-text-analyzer/test/analyzer.spec.js @@ -4,7 +4,7 @@ import analyzer from '../src/analyzer'; const TEST_TEXT_NO_NUMBERS = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; const TEST_TEXT_NUMBERS = 'If I have 8 apples and I buy 2 more, how many apples do I have in total?'; -const TEST_TEXT_DECIMALS = 'Calculate the sum of 1.65 plus 0.15 plus 1.10.'; +const TEST_TEXT_DECIMALS = 'Calculate the sum of 1.65 plus 0.15 plus 1.10'; const TEST_TEXT_NOT_A_NUMBER = 'This is not a number: 41u0003jot';