From 5d739932c0b09f6b2dadf9470c42c130966176c2 Mon Sep 17 00:00:00 2001 From: tison Date: Wed, 10 Apr 2024 06:55:55 +0800 Subject: [PATCH] chore: remove TODO that has been done (#3683) This TODO is done by https://github.com/GreptimeTeam/greptimedb/pull/3473. --- tests-integration/tests/http.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests-integration/tests/http.rs b/tests-integration/tests/http.rs index 20ef70a0ff..1835b907e0 100644 --- a/tests-integration/tests/http.rs +++ b/tests-integration/tests/http.rs @@ -260,7 +260,6 @@ pub async fn test_sql_api(store_type: StorageType) { assert_eq!(res.status(), StatusCode::BAD_REQUEST); let body = serde_json::from_str::(&res.text().await).unwrap(); - // TODO(shuiyisong): fix this when return source err msg to client side assert!(body.error().contains("Table not found")); assert_eq!(body.code(), ErrorCode::PlanQuery as u32);