From 6379a03bf82bc14c2b013f826ea93d8049e07268 Mon Sep 17 00:00:00 2001 From: Charlie Chao Date: Sun, 27 Jun 2021 12:30:42 -0700 Subject: [PATCH] Make test case more clear. --- src/tidyFootnotes.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tidyFootnotes.test.ts b/src/tidyFootnotes.test.ts index 8dbad06..e20ff24 100644 --- a/src/tidyFootnotes.test.ts +++ b/src/tidyFootnotes.test.ts @@ -95,15 +95,15 @@ test('Multi-line definitions should stay together', () => { \tC End -[^1]: A -\tB`); +[^1]: D +\tE`); expect(value).toBe(`Start [^1]: A \tB \tC -[^2]: A -\tB +[^2]: D +\tE End`); -}); \ No newline at end of file +});