Skip to content

Commit edfe0cf

Browse files
authored
Merge pull request #1597 from ydb-platform/fix-experimental
fixed test with drop user on nightly ydb
2 parents 44135d1 + 25b7f8a commit edfe0cf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/integration/driver_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,7 @@ func TestDriver(sourceTest *testing.T) {
186186
err = db.Query().Exec(ctx, "CREATE USER test PASSWORD 'password'; ALTER GROUP `ADMINS` ADD USER test;")
187187
require.NoError(t, err)
188188
defer func() {
189-
err = db.Query().Exec(ctx, `DROP USER test`)
190-
require.NoError(t, err)
189+
_ = db.Query().Exec(ctx, `DROP USER test`)
191190
}()
192191
t.RunSynced("UsingConnectionString", func(t *xtest.SyncedTest) {
193192
t.RunSynced("HappyWay", func(t *xtest.SyncedTest) {

0 commit comments

Comments
 (0)