浏览代码

Use correct URL for tests

tags/v1.1.4
Sadposter 5 年前
父节点
当前提交
7026018c8c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      test/web/mastodon_api/mastodon_api_controller_test.exs

+ 2
- 2
test/web/mastodon_api/mastodon_api_controller_test.exs 查看文件

@@ -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


正在加载...
取消
保存