diff options
author | Maxim Filippov <colixer@gmail.com> | 2019-03-17 13:23:08 +0300 |
---|---|---|
committer | Maxim Filippov <colixer@gmail.com> | 2019-03-17 13:23:31 +0300 |
commit | 93291c3d7a4dc580a2c76653521b7f6653cf4113 (patch) | |
tree | d27483f21ec385990ef1fa364fd897e79ef17c2c /test | |
parent | 6d6f48d0795cc12d3c5aca5d90ae51b10086996d (diff) | |
download | pleroma-93291c3d7a4dc580a2c76653521b7f6653cf4113.tar.gz pleroma-93291c3d7a4dc580a2c76653521b7f6653cf4113.zip |
Order users by nickname
Diffstat (limited to 'test')
-rw-r--r-- | test/upload_test.exs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/upload_test.exs b/test/upload_test.exs index 770226478..bdda01b3f 100644 --- a/test/upload_test.exs +++ b/test/upload_test.exs @@ -150,8 +150,7 @@ defmodule Pleroma.UploadTest do {:ok, data} = Upload.store(file) [attachment_url | _] = data["url"] - assert Path.basename(attachment_url["href"]) == - "an%E2%80%A6%20image.jpg" + assert Path.basename(attachment_url["href"]) == "an%E2%80%A6%20image.jpg" end test "escapes reserved uri characters" do |