From: Ivan Tashkinov Date: Wed, 5 Dec 2018 08:56:31 +0000 (+0300) Subject: [#210] Test update (replaced bang- with non-bang method). X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=53797d19c5e8463388862eaa20931c8cb78d66a6;p=akkoma [#210] Test update (replaced bang- with non-bang method). --- diff --git a/test/web/twitter_api/twitter_api_controller_test.exs b/test/web/twitter_api/twitter_api_controller_test.exs index 21e844124..478763de7 100644 --- a/test/web/twitter_api/twitter_api_controller_test.exs +++ b/test/web/twitter_api/twitter_api_controller_test.exs @@ -1268,7 +1268,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do }) |> json_response(:no_content) - object = Repo.get!(Object, object.id) + object = Repo.get(Object, object.id) assert object.data["name"] == description end end