From f8e62de84bc6cb52c5398bb339f98c778dd44509 Mon Sep 17 00:00:00 2001 From: EmersonRabelo Date: Fri, 9 Feb 2024 17:20:08 -0300 Subject: [PATCH] fix: Sentence correction --- test/util.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util.test.js b/test/util.test.js index daf1fcc53..0146a4e2c 100644 --- a/test/util.test.js +++ b/test/util.test.js @@ -22,7 +22,7 @@ describe('Util', () => { }); describe('assertString', () => { - it('Should throw an error if no argument is provided, undefined', () => { + it('Should throw an error if argument provided is an undefined', () => { assert.throws(() => { assertString(); }, TypeError); });