Skip to content

Commit

Permalink
Merge pull request #1597 from ydb-platform/fix-experimental
Browse files Browse the repository at this point in the history
fixed test with drop user on nightly ydb
  • Loading branch information
asmyasnikov authored Dec 23, 2024
2 parents 44135d1 + 25b7f8a commit edfe0cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/integration/driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,7 @@ func TestDriver(sourceTest *testing.T) {
err = db.Query().Exec(ctx, "CREATE USER test PASSWORD 'password'; ALTER GROUP `ADMINS` ADD USER test;")
require.NoError(t, err)
defer func() {
err = db.Query().Exec(ctx, `DROP USER test`)
require.NoError(t, err)
_ = db.Query().Exec(ctx, `DROP USER test`)
}()
t.RunSynced("UsingConnectionString", func(t *xtest.SyncedTest) {
t.RunSynced("HappyWay", func(t *xtest.SyncedTest) {
Expand Down

0 comments on commit edfe0cf

Please sign in to comment.