Skip to content

Commit

Permalink
Fix L0 testcase TestDropDb error msg (#605)
Browse files Browse the repository at this point in the history
Signed-off-by: Congqi Xia <[email protected]>
  • Loading branch information
congqixia authored Oct 24, 2023
1 parent 647cbab commit a6a2f17
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 a6a2f17

Please sign in to comment.