diff options
| author | Maxim Filippov <colixer@gmail.com> | 2019-03-17 13:29:28 +0300 | 
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2019-03-17 13:29:28 +0300 | 
| commit | 76a13bc5a203970c36cace0791b4855c5613b91e (patch) | |
| tree | d229c4bdca2bd3baa04871feee9d72636a9e0a6b /test | |
| parent | 93291c3d7a4dc580a2c76653521b7f6653cf4113 (diff) | |
| download | pleroma-76a13bc5a203970c36cace0791b4855c5613b91e.tar.gz pleroma-76a13bc5a203970c36cace0791b4855c5613b91e.zip | |
Fix test
Diffstat (limited to 'test')
| -rw-r--r-- | test/web/admin_api/admin_api_controller_test.exs | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/test/web/admin_api/admin_api_controller_test.exs b/test/web/admin_api/admin_api_controller_test.exs index e50f0edde..0aab7f262 100644 --- a/test/web/admin_api/admin_api_controller_test.exs +++ b/test/web/admin_api/admin_api_controller_test.exs @@ -495,20 +495,20 @@ defmodule Pleroma.Web.AdminAPI.AdminAPIControllerTest do                 "page_size" => 50,                 "users" => [                   %{ -                   "deactivated" => admin.info.deactivated, -                   "id" => admin.id, -                   "nickname" => admin.nickname, -                   "roles" => %{"admin" => true, "moderator" => false}, -                   "local" => true, -                   "tags" => [] -                 }, -                 %{                     "deactivated" => user.info.deactivated,                     "id" => user.id,                     "nickname" => user.nickname,                     "roles" => %{"admin" => false, "moderator" => false},                     "local" => true,                     "tags" => [] +                 }, +                 %{ +                   "deactivated" => admin.info.deactivated, +                   "id" => admin.id, +                   "nickname" => admin.nickname, +                   "roles" => %{"admin" => true, "moderator" => false}, +                   "local" => true, +                   "tags" => []                   }                 ]               } | 
