refactoring

This commit is contained in:
frankknoll
2023-10-15 10:35:32 +02:00
parent 5cc2b0c99f
commit b6c5a92b55
9 changed files with 23 additions and 12 deletions

View File

@@ -11,7 +11,6 @@ QUnit.module('UtilsTest', function () {
const csv = Utils.convertDict2CSV(dict);
// Then
const csvExpected = '"MM,R","VARCEL"\n26.17432376240791,10.549534724816644';
assert.equal(csv, csvExpected);
assert.equal(csv, '"MM,R","VARCEL"\n26.17432376240791,10.549534724816644');
});
});