From ec517d955f7b60508097a77b80fd29bee199274c Mon Sep 17 00:00:00 2001 From: Sasha Koss Date: Mon, 10 Jun 2019 19:30:08 +0400 Subject: [PATCH] Fix test description --- src/addBusinessDays/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addBusinessDays/test.js b/src/addBusinessDays/test.js index 932e87fa1f..2b90008fb3 100644 --- a/src/addBusinessDays/test.js +++ b/src/addBusinessDays/test.js @@ -5,7 +5,7 @@ import assert from 'power-assert' import addBusinessDays from '.' describe('addBusinessDays', function() { - it('adds the given number of weekdays', function() { + it('adds the given number of business days', function() { var result = addBusinessDays(new Date(2014, 8 /* Sep */, 1), 10) assert.deepEqual(result, new Date(2014, 8 /* Sep */, 15)) })