diff options
| author | lain <lain@soykaf.club> | 2020-01-20 15:31:14 +0100 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-01-20 15:31:14 +0100 | 
| commit | 2199d63ddcbbfabb4d0daa70cbebfeac2d50717b (patch) | |
| tree | 09c18f778c05dd637aa8061916dcdb11f02bfd5b /test/web/mastodon_api/controllers | |
| parent | 510776ba31f0bb01217fd6585848657f5bceb5f7 (diff) | |
| download | pleroma-2199d63ddcbbfabb4d0daa70cbebfeac2d50717b.tar.gz pleroma-2199d63ddcbbfabb4d0daa70cbebfeac2d50717b.zip | |
StatusControllerTest: Fix typo
Diffstat (limited to 'test/web/mastodon_api/controllers')
| -rw-r--r-- | test/web/mastodon_api/controllers/status_controller_test.exs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/test/web/mastodon_api/controllers/status_controller_test.exs b/test/web/mastodon_api/controllers/status_controller_test.exs index 0b75fcc91..b03b4b344 100644 --- a/test/web/mastodon_api/controllers/status_controller_test.exs +++ b/test/web/mastodon_api/controllers/status_controller_test.exs @@ -642,7 +642,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusControllerTest do        activity = insert(:note_activity)        post(conn, "/api/v1/statuses/#{activity.id}/favourite") -      assert post(conn, "/api/v2/statuses/#{activity.id}/favourite") |> json_response(200) +      assert post(conn, "/api/v1/statuses/#{activity.id}/favourite") |> json_response(200)      end      test "returns 400 error for a wrong id", %{conn: conn} do | 
