From ce190d867ca126001a1c0417b00810fc03c0b3ba Mon Sep 17 00:00:00 2001 From: Tobi Smethurst <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 16 Aug 2021 19:17:56 +0200 Subject: Text/status parsing fixes (#141) * aaaaaa * vendor minify * update + test markdown parsing --- internal/processing/status/util_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/processing') diff --git a/internal/processing/status/util_test.go b/internal/processing/status/util_test.go index 9a4bd6515..4bf508848 100644 --- a/internal/processing/status/util_test.go +++ b/internal/processing/status/util_test.go @@ -17,8 +17,8 @@ const statusText1 = `Another test @foss_satan@fossbros-anonymous.io #Hashtag Text` -const statusText1ExpectedFull = `

Another test @foss_satan

#Hashtag

Text

` -const statusText1ExpectedPartial = `

Another test @foss_satan

#Hashtag

Text

` +const statusText1ExpectedFull = "

Another test @foss_satan

#Hashtag

Text

" +const statusText1ExpectedPartial = "

Another test @foss_satan

#Hashtag

Text

" const statusText2 = `Another test @foss_satan@fossbros-anonymous.io @@ -26,7 +26,7 @@ const statusText2 = `Another test @foss_satan@fossbros-anonymous.io #hashTAG` -const status2TextExpectedFull = `

Another test @foss_satan

#Hashtag

#hashTAG

` +const status2TextExpectedFull = "

Another test @foss_satan

#Hashtag

#hashTAG

" type UtilTestSuite struct { StatusStandardTestSuite -- cgit v1.2.3