From 7ef652091cde9e6493ade3409f262b58b80cd238 Mon Sep 17 00:00:00 2001
From: Georg Krause <mail@georg-krause.net>
Date: Thu, 13 Oct 2022 19:36:27 +0200
Subject: [PATCH] test(common): Fix test for SpaManifestView with Serializer

---
 api/tests/instance/test_views.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/api/tests/instance/test_views.py b/api/tests/instance/test_views.py
index 005924990d..2ed846f7b5 100644
--- a/api/tests/instance/test_views.py
+++ b/api/tests/instance/test_views.py
@@ -44,12 +44,9 @@ def test_manifest_endpoint(api_client, mocker, preferences, tmp_path, settings):
     settings.FUNKWHALE_SPA_HTML_ROOT = str(tmp_path / "index.html")
     preferences["instance__name"] = "Test pod"
     preferences["instance__short_description"] = "Test description"
-    base_payload = {
-        "foo": "bar",
-    }
+    base_payload = {}
     manifest = tmp_path / "manifest.json"
     expected = {
-        "foo": "bar",
         "name": "Test pod",
         "short_name": "Test pod",
         "description": "Test description",
-- 
GitLab