aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-07-01 16:39:12 +0200
committerRoger Braun <roger@rogerbraun.net>2017-07-01 16:39:12 +0200
commit9cda5b897a17af9191de2261daf530b3f294d60d (patch)
tree6f89d8f6b897fd05f7d2482fc0cf5a95dcfedc59 /test
parentac04ba240aa824ce55c12b70643fc060917d2a2a (diff)
downloadpleroma-9cda5b897a17af9191de2261daf530b3f294d60d.tar.gz
Fix test.
Diffstat (limited to 'test')
-rw-r--r--test/user_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/user_test.exs b/test/user_test.exs
index 6a7ecca27..c79564385 100644
--- a/test/user_test.exs
+++ b/test/user_test.exs
@@ -178,7 +178,7 @@ defmodule Pleroma.UserTest do
end
test "it restricts some sizes" do
- [bio: 1000, name: 100]
+ [bio: 5000, name: 100]
|> Enum.each(fn ({field, size}) ->
string = String.pad_leading(".", size)
cs = User.remote_user_creation(Map.put(@valid_remote, field, string))