Refactor code smells in unit tests

This commit is contained in:
Ibrahim Wassouf 2023-07-04 21:34:14 -03:00
parent e3c90ac084
commit 34e89098f5
1 changed files with 1 additions and 6 deletions

View File

@ -276,7 +276,7 @@ class C13["With Città foreign language"]
});
it('should handle note with "link" in it', function () {
const str = 'classDiagram\n' + 'note "test"\n';
const str = 'classDiagram\n' + 'note "link"\n';
parser.parse(str);
});
@ -285,11 +285,6 @@ class C13["With Città foreign language"]
parser.parse(str);
});
it('should handle note with "link" in it', function () {
const str = 'classDiagram\n' + 'note "test"\n';
parser.parse(str);
});
it('should handle note with "note" in it', function () {
const str = 'classDiagram\n' + 'note "note"\n';
parser.parse(str);