diff options
Diffstat (limited to 'internal/text/plain_test.go')
-rw-r--r-- | internal/text/plain_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/text/plain_test.go b/internal/text/plain_test.go index 5a2918563..dfcf8b953 100644 --- a/internal/text/plain_test.go +++ b/internal/text/plain_test.go @@ -34,7 +34,7 @@ const ( withHTML = "<div>blah this should just be html escaped blah</div>" withHTMLExpected = "<p><div>blah this should just be html escaped blah</div></p>" moreComplex = "Another test @foss_satan@fossbros-anonymous.io\n\n#Hashtag\n\nText\n\n:rainbow:" - moreComplexExpected = "<p>Another test <span class=\"h-card\"><a href=\"http://fossbros-anonymous.io/@foss_satan\" class=\"u-url mention\" rel=\"nofollow noreferrer noopener\" target=\"_blank\">@<span>foss_satan</span></a></span><br><br><a href=\"http://localhost:8080/tags/Hashtag\" class=\"mention hashtag\" rel=\"tag nofollow noreferrer noopener\" target=\"_blank\">#<span>Hashtag</span></a><br><br>Text<br><br>:rainbow:</p>" + moreComplexExpected = "<p>Another test <span class=\"h-card\"><a href=\"http://fossbros-anonymous.io/@foss_satan\" class=\"u-url mention\" rel=\"nofollow noreferrer noopener\" target=\"_blank\">@<span>foss_satan</span></a></span><br><br><a href=\"http://localhost:8080/tags/hashtag\" class=\"mention hashtag\" rel=\"tag nofollow noreferrer noopener\" target=\"_blank\">#<span>Hashtag</span></a><br><br>Text<br><br>:rainbow:</p>" ) type PlainTestSuite struct { @@ -103,7 +103,7 @@ func (suite *PlainTestSuite) TestDeriveHashtagsOK() { #111111 thisalsoshouldn'twork#### ## #alimentación, #saúde, #lävistää, #ö, #네 -#ThisOneIsThirtyOneCharactersLon... ...ng +#ThisOneIsOneHundredAndOneCharactersLongWhichIsReallyJustWayWayTooLongDefinitelyLongerThanYouWouldNeed... #ThisOneIsThirteyCharactersLong ` @@ -141,7 +141,7 @@ func (suite *PlainTestSuite) TestDeriveMultiple() { assert.Equal(suite.T(), "@foss_satan@fossbros-anonymous.io", f.Mentions[0].NameString) assert.Len(suite.T(), f.Tags, 1) - assert.Equal(suite.T(), "Hashtag", f.Tags[0].Name) + assert.Equal(suite.T(), "hashtag", f.Tags[0].Name) assert.Len(suite.T(), f.Emojis, 0) } |