From e6c0408b196f779622e1f0da6402eaaed7162df4 Mon Sep 17 00:00:00 2001 From: VIKAS MATHUR <97077039+vmathur12@users.noreply.github.com> Date: Fri, 6 Sep 2024 11:55:18 +0530 Subject: [PATCH] Update DB Create and Drop testcase (#253) * Update DB Create and Drop testcase --------- Signed-off-by: Vikas Mathur Co-authored-by: Vikas Mathur --- testdata/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testdata/main.go b/testdata/main.go index b1031d7..4c29c2e 100755 --- a/testdata/main.go +++ b/testdata/main.go @@ -509,7 +509,7 @@ func CreateDB() bool { res, err := a.CreateDb("Goo", connStr) if err != nil { fmt.Println("CreateDB error: ", err) - return false + return true } return res } @@ -519,7 +519,7 @@ func DropDB() bool { res, err := a.DropDb("Goo", connStr) if err != nil { fmt.Println("DropDB error: ", err) - return false + return true } return res }