From: Haelwenn (lanodan) Monnier Date: Sat, 23 Jun 2018 11:28:14 +0000 (+0200) Subject: [Pleroma.FormatterTest]: .add_links: Add a space before the dot X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=1a2255ef7ed6978b10b0dabbcee1036fe06c87a7;p=akkoma [Pleroma.FormatterTest]: .add_links: Add a space before the dot A dot is legal in the url, even at the end, so I moved it for the test --- diff --git a/test/formatter_test.exs b/test/formatter_test.exs index c2b3d4ac0..acf0adb1c 100644 --- a/test/formatter_test.exs +++ b/test/formatter_test.exs @@ -20,10 +20,10 @@ defmodule Pleroma.FormatterTest do describe ".add_links" do test "turning urls into links" do - text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla." + text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla ." expected = - "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla." + "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla ." assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected