Skip to content

Commit

Permalink
Fix test case for indented comments on enum fields
Browse files Browse the repository at this point in the history
Related to jhipster#14869
  • Loading branch information
swarajsaaj committed Aug 16, 2021
1 parent a910cd6 commit 170401c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 */' },
]);
});
});
Expand Down

0 comments on commit 170401c

Please sign in to comment.