diff --git a/tests/api/test_api_v1_status_id_mute.cpp b/tests/api/test_api_v1_status_id_mute.cpp index 3896f91..b67c7cf 100644 --- a/tests/api/test_api_v1_status_id_mute.cpp +++ b/tests/api/test_api_v1_status_id_mute.cpp @@ -25,7 +25,7 @@ using namespace Mastodon; SCENARIO ("/api/v1/statuses/:id/mute can be called successfully", - "[api][auth][mastodon][glitch-soc]") + "[api][auth][mastodon][pleroma][glitch-soc]") { REQUIRE (access_token != nullptr); @@ -42,7 +42,7 @@ SCENARIO ("/api/v1/statuses/:id/mute can be called successfully", { ret = masto.post(API::v1::statuses_id_mute, { - { "id", { user_id } } + { "id", { status_id } } }); status.from_string(ret); } diff --git a/tests/api/test_api_v1_status_id_unmute.cpp b/tests/api/test_api_v1_status_id_unmute.cpp index ad2eaa0..07ad78f 100644 --- a/tests/api/test_api_v1_status_id_unmute.cpp +++ b/tests/api/test_api_v1_status_id_unmute.cpp @@ -25,7 +25,7 @@ using namespace Mastodon; SCENARIO ("/api/v1/statuses/:id/unmute can be called successfully", - "[api][auth][mastodon][glitch-soc]") + "[api][auth][mastodon][pleroma][glitch-soc]") { REQUIRE (access_token != nullptr); @@ -42,7 +42,7 @@ SCENARIO ("/api/v1/statuses/:id/unmute can be called successfully", { ret = masto.post(API::v1::statuses_id_unmute, { - { "id", { user_id } } + { "id", { status_id } } }); status.from_string(ret); }