From 715e2b48caf29c57e0c23745b948610267f414e8 Mon Sep 17 00:00:00 2001 From: liu an Date: Tue, 11 Mar 2025 13:35:28 +0800 Subject: [PATCH] Test: Update test cases per PR #5748 #5878 (#5894) ### What problem does this PR solve? update test cases per PR #5748 #5878 issue #5709 ### Type of change - [x] update test cases --- .../test_dataset_mangement/test_create_dataset.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/sdk/python/test/test_http_api/test_dataset_mangement/test_create_dataset.py b/sdk/python/test/test_http_api/test_dataset_mangement/test_create_dataset.py index a3b601545..d90206d6b 100644 --- a/sdk/python/test/test_http_api/test_dataset_mangement/test_create_dataset.py +++ b/sdk/python/test/test_http_api/test_dataset_mangement/test_create_dataset.py @@ -101,9 +101,7 @@ class TestAdvancedConfigurations: [ ("me", "me", 0), ("team", "team", 0), - pytest.param( - "empty_permission", "", 0, marks=pytest.mark.xfail(reason="issue#5709") - ), + ("empty_permission", "", 0), ("me_upercase", "ME", 102), ("team_upercase", "TEAM", 102), ("other_permission", "other_permission", 102), @@ -134,12 +132,7 @@ class TestAdvancedConfigurations: ("picknowledge_graphture", "knowledge_graph", 0), ("email", "email", 0), ("tag", "tag", 0), - pytest.param( - "empty_chunk_method", - "", - 0, - marks=pytest.mark.xfail(reason="issue#5709"), - ), + ("empty_chunk_method", "", 0), ("other_chunk_method", "other_chunk_method", 102), ], )