Update tests

This commit is contained in:
Siarhei Bautrukevich 2019-03-14 11:57:39 +08:00
parent 0c44e390a2
commit 7682fa285f

View File

@ -8,7 +8,7 @@ describe('Utils', () => {
};
const actual = jsonToTextPlain(json);
const expected = '"key": "value"<br>' + '"anotherKey": "anotherValue"';
const expected = '"key": "value"\n' + '"anotherKey": "anotherValue"\n';
expect(actual).toEqual(expected);
});
});