From 6431a8255dc5046c6c39f74886adfd288b24562d Mon Sep 17 00:00:00 2001 From: Ben Coleman Date: Tue, 12 Dec 2017 13:59:38 +0000 Subject: [PATCH] Fixed trailing spaces --- tests/lib/get-todo-status-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/get-todo-status-test.js b/tests/lib/get-todo-status-test.js index d17f0f40..c97ae2b9 100644 --- a/tests/lib/get-todo-status-test.js +++ b/tests/lib/get-todo-status-test.js @@ -16,7 +16,7 @@ test('getTodoStatus should return a correct hash object', t => { ['+ [ ] a\n+ [xtest] a\n', { total: 1, completed: 0 }], ['+ [ ] a\n+ foo[x]bar a\n', { total: 1, completed: 0 }], ['+ [ ] a\n+ foo[x] bar a\n', { total: 1, completed: 0 }], - ['+ [ ] a\n+ foo [x]bar a\n', { total: 1, completed: 0 }] + ['+ [ ] a\n+ foo [x]bar a\n', { total: 1, completed: 0 }] ] testCases.forEach(testCase => {