Skip to content

Commit 25b7f8a

Browse files
committed
fixed test with drop user on nightly ydb
1 parent 44135d1 commit 25b7f8a

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)