From 62f17de60d1ccb7864d62e0f9f23a6a91d92500d Mon Sep 17 00:00:00 2001 From: phiresky Date: Thu, 20 Feb 2025 16:30:45 +0100 Subject: [PATCH] temp revert for tests --- api_tests/src/image.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api_tests/src/image.spec.ts b/api_tests/src/image.spec.ts index b1cf321d4..b5cc72fe0 100644 --- a/api_tests/src/image.spec.ts +++ b/api_tests/src/image.spec.ts @@ -75,7 +75,7 @@ test("Upload image and delete it", async () => { expect(listAllMediaRes.images.length).toBe(previousThumbnails); // Make sure the uploader is correct - expect(listMediaRes.images[0].person.ap_id).toBe( + expect(listMediaRes.images[0].person.actor_id).toBe( `http://lemmy-alpha:8541/u/lemmy_alpha`, ); @@ -268,7 +268,7 @@ test("No image proxying if setting is disabled", async () => { let community = await createCommunity(alpha); let betaCommunity = await resolveCommunity( beta, - community.community_view.community.ap_id, + community.community_view.community.actor_id, ); await followCommunity(beta, true, betaCommunity.community!.community.id);