From 12271172a1d33822dc47dd8a3a509df321028c37 Mon Sep 17 00:00:00 2001 From: Thamara Andrade Date: Mon, 8 Jan 2024 00:23:25 -0300 Subject: [PATCH] Fixing indentation in validate-json --- __tests__/__main__/validate-json.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/__main__/validate-json.js b/__tests__/__main__/validate-json.js index 62cb7c3d..ce4f2ff5 100644 --- a/__tests__/__main__/validate-json.js +++ b/__tests__/__main__/validate-json.js @@ -27,7 +27,7 @@ describe('Validate json', function() }); }); -describe('validate date with and without leading 0', function() + describe('validate date with and without leading 0', function() { const validFlexibleDate1 = [{ 'type': 'flexible', 'date': '2020-06-03', 'values': ['08:00', '12:00', '13:00', '14:00'] }]; const validFlexibleDate2 = [{ 'type': 'flexible', 'date': '2020-6-3', 'values': ['08:00', '12:00', '13:00', '14:00'] }];