Browse Source

Use correct URL for tests

tags/v1.1.4
Sadposter 5 years ago
parent
commit
7026018c8c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/web/mastodon_api/mastodon_api_controller_test.exs

+ 2
- 2
test/web/mastodon_api/mastodon_api_controller_test.exs View File

@@ -3794,7 +3794,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
response =
conn
|> assign(:user, nil)
|> get("/api/v1/#{activity.id}/favourited_by")
|> get("/api/v1/statuses/#{activity.id}/favourited_by")
|> json_response(:ok)

[%{"id" => id}] = response
@@ -3865,7 +3865,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
response =
conn
|> assign(:user, nil)
|> get("/api/v1/#{activity.id}/reblogged_by")
|> get("/api/v1/statuses/#{activity.id}/reblogged_by")
|> json_response(:ok)

[%{"id" => id}] = response


Loading…
Cancel
Save