Skip to content

Commit

Permalink
Fix L0 testcase TestDropDb error msg (milvus-io#605)
Browse files Browse the repository at this point in the history
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
  • Loading branch information
congqixia authored and ThreadDao committed Nov 6, 2023
1 parent 19f97bd commit 9102923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testcases/database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func TestDropDb(t *testing.T) {

// verify current db
_, err = mc.ListCollections(ctx)
common.CheckErr(t, err, false, fmt.Sprintf("database:%s not found", dbName))
common.CheckErr(t, err, false, fmt.Sprintf("database=%s: database not found", dbName))

// using default db and verify collections
mc.UsingDatabase(ctx, common.DefaultDb)
Expand Down

0 comments on commit 9102923

Please sign in to comment.