From 9c3a57f61583c85457863b6a28250474f307a06a Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 17 Aug 2018 14:18:24 +0100 Subject: [PATCH] lib: some test fixes (#823) --- hledger-lib/Hledger/Read/JournalReader.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hledger-lib/Hledger/Read/JournalReader.hs b/hledger-lib/Hledger/Read/JournalReader.hs index 99ba86cf2..205eb747d 100644 --- a/hledger-lib/Hledger/Read/JournalReader.hs +++ b/hledger-lib/Hledger/Read/JournalReader.hs @@ -837,15 +837,15 @@ easytests = test "JournalReader" $ tests [ ptperiodexpr = "monthly from 2018/6" ,ptinterval = Months 1 ,ptspan = DateSpan (Just $ parsedate "2018/06/01") Nothing - ,ptcomment = "In 2019 we will change this\n" + ,ptdescription = "In 2019 we will change this\n" } - ,_test "more-period-text-in-description-after-one-space" $ skip >> expectParseEqIO periodictransactionp + ,_test "more-period-text-in-description-after-one-space" $ expectParseEqIO periodictransactionp "~ monthly from 2018/6 In 2019 we will change this\n" nullperiodictransaction { ptperiodexpr = "monthly from 2018/6" ,ptinterval = Months 1 ,ptspan = DateSpan (Just $ parsedate "2018/06/01") Nothing - ,ptcomment = "In 2019 we will change this\n" + ,ptdescription = "In 2019 we will change this\n" } ] ]