diff options
author | lain <lain@soykaf.club> | 2018-02-12 09:33:01 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-02-12 09:33:01 +0100 |
commit | 33a5d0a2385984168f7de063093c6a71c8b07b73 (patch) | |
tree | 0ebe821ce5f49794948922e1605a28d08d254dce /test/web/twitter_api/twitter_api_controller_test.exs | |
parent | 91928b06ab9574f68a48003401083783a540da87 (diff) | |
download | pleroma-33a5d0a2385984168f7de063093c6a71c8b07b73.tar.gz pleroma-33a5d0a2385984168f7de063093c6a71c8b07b73.zip |
Fix some test warnings.
Diffstat (limited to 'test/web/twitter_api/twitter_api_controller_test.exs')
-rw-r--r-- | test/web/twitter_api/twitter_api_controller_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/twitter_api/twitter_api_controller_test.exs b/test/web/twitter_api/twitter_api_controller_test.exs index 39f1cdd4c..78d4fdcb3 100644 --- a/test/web/twitter_api/twitter_api_controller_test.exs +++ b/test/web/twitter_api/twitter_api_controller_test.exs @@ -585,7 +585,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do end describe "POST /api/account/update_profile.json" do - test "it updates a user's profile" do + test "it updates a user's profile", %{conn: conn} do user = insert(:user) conn = conn @@ -627,7 +627,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do end describe "GET /api/statusnet/tags/timeline/:tag.json" do - test "it returns the tags timeline" do + test "it returns the tags timeline", %{conn: conn} do user = insert(:user) user_two = insert(:user, %{nickname: "shp@shitposter.club"}) |