diff options
author | rinpatch <rinpatch@sdf.org> | 2020-09-28 18:15:31 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-09-28 18:34:03 +0300 |
commit | 7bc561127da6489862d3b7ea49ebc853c0267729 (patch) | |
tree | 1c5abeec6a6d7abef0a47df76bf609ba1e066bd1 /test | |
parent | 35157f5dc845483e9d65236b87461f15c77ad634 (diff) | |
download | pleroma-7bc561127da6489862d3b7ea49ebc853c0267729.tar.gz pleroma-7bc561127da6489862d3b7ea49ebc853c0267729.zip |
Revert citext user URI migration
URI paths are not actually case-insesitive, which caused migration issues
on a number of databases.
Closes #2188
Diffstat (limited to 'test')
-rw-r--r-- | test/user_search_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/user_search_test.exs b/test/user_search_test.exs index b99a77b57..cc14e9741 100644 --- a/test/user_search_test.exs +++ b/test/user_search_test.exs @@ -41,7 +41,7 @@ defmodule Pleroma.UserSearchTest do insert(:user, %{ nickname: "no_relation", ap_id: "https://lain.com/users/lain", - uri: "https://lain.com/@Lain" + uri: "https://lain.com/@lain" }) _user = insert(:user, %{nickname: "com_user"}) |