From 6de4a4873abfeaa2df2797f32f0dfb61d92f1a49 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Wed, 17 Apr 2024 13:28:48 +0530 Subject: [PATCH] Fix image-related client unit test --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index bb565794..13f226c1 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -273,7 +273,7 @@ def test_get_api_config_types(client, sample_org_data, default_user: KhojUser): # Assert assert response.status_code == 200 - assert response.json() == ["all", "org", "image", "plaintext"] + assert response.json() == ["all", "org", "plaintext"] # ----------------------------------------------------------------------------------------------------