From 7682fa285fc9cd9145aff6c8f6ff3e848df0982a Mon Sep 17 00:00:00 2001 From: Siarhei Bautrukevich Date: Thu, 14 Mar 2019 11:57:39 +0800 Subject: [PATCH] Update tests --- src/utils/__tests__/jsonToTextPlain.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/__tests__/jsonToTextPlain.test.ts b/src/utils/__tests__/jsonToTextPlain.test.ts index 99b6ad02..42d1e63e 100644 --- a/src/utils/__tests__/jsonToTextPlain.test.ts +++ b/src/utils/__tests__/jsonToTextPlain.test.ts @@ -8,7 +8,7 @@ describe('Utils', () => { }; const actual = jsonToTextPlain(json); - const expected = '"key": "value"
' + '"anotherKey": "anotherValue"'; + const expected = '"key": "value"\n' + '"anotherKey": "anotherValue"\n'; expect(actual).toEqual(expected); }); });