From b5b714861d68e0af796aac82a9469b6d139ffc05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20W=C3=BCrtz?= Date: Sat, 6 Jul 2019 12:26:32 -0300 Subject: [PATCH] test(ganttDb.spec): flip function design to specify inclusive instead --- src/diagrams/gantt/ganttDb.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diagrams/gantt/ganttDb.spec.js b/src/diagrams/gantt/ganttDb.spec.js index 67dcbc0d2..b78782869 100644 --- a/src/diagrams/gantt/ganttDb.spec.js +++ b/src/diagrams/gantt/ganttDb.spec.js @@ -151,7 +151,7 @@ describe('when using the ganttDb', function () { describe('when setting inclusive end dates', function () { beforeEach(function () { - ganttDb.setDateFormat('YYYY-MM-DD', false) + ganttDb.setDateFormat('YYYY-MM-DD', true) ganttDb.addTask('test1', 'id1,2019-02-01,1d') ganttDb.addTask('test2', 'id2,2019-02-01,2019-02-03') })