fix(api): stop returning 204 with response body and add CI check (#36489)

This commit is contained in:
chariri
2026-05-22 01:20:34 +09:00
committed by GitHub
parent f19702f76c
commit ea5e487d3c
29 changed files with 46 additions and 46 deletions

View File

@@ -327,7 +327,7 @@ class TestInstalledAppApi:
resp, status = method(installed_app)
assert status == 204
assert resp["result"] == "success"
assert resp == ""
def test_delete_owned_by_current_tenant(self, tenant_id: str):
api = module.InstalledAppApi()

View File

@@ -141,7 +141,7 @@ class TestSavedMessageApi:
delete_mock.assert_called_once()
assert status == 204
assert result == {"result": "success"}
assert result == ""
def test_delete_not_completion_app(self):
api = module.SavedMessageApi()