From 170401c258bdf876fed7c00ad65eab63cce7e262 Mon Sep 17 00:00:00 2001 From: swarajsaaj Date: Tue, 17 Aug 2021 00:31:38 +0530 Subject: [PATCH] Fix test case for indented comments on enum fields Related to #14869 --- test/utils.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils.spec.js b/test/utils.spec.js index a2e240c3f02..030092ce534 100644 --- a/test/utils.spec.js +++ b/test/utils.spec.js @@ -194,9 +194,9 @@ describe('JHipster Utils', () => { { name: 'AAA', value: 'aaa', - comment: '/**\n * first comment\n */', + comment: ' /**\n * first comment\n */', }, - { name: 'BBB', value: 'bbb and b', comment: '/**\n * second comment\n */' }, + { name: 'BBB', value: 'bbb and b', comment: ' /**\n * second comment\n */' }, ]); }); });