Skip to content

Commit 38f0281

Browse files
committed
fixed tests
1 parent 0272a4c commit 38f0281

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/integration/topic_read_writer_test.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import (
88
"context"
99
"encoding/binary"
1010
"errors"
11-
"github.com/ydb-platform/ydb-go-sdk/v3/query"
12-
"github.com/ydb-platform/ydb-go-sdk/v3/topic/topicreader"
1311
"io"
1412
"os"
1513
"runtime/pprof"
@@ -20,6 +18,9 @@ import (
2018
"testing"
2119
"time"
2220

21+
"github.com/ydb-platform/ydb-go-sdk/v3/query"
22+
"github.com/ydb-platform/ydb-go-sdk/v3/topic/topicreader"
23+
2324
"github.com/stretchr/testify/require"
2425
"google.golang.org/grpc"
2526

@@ -524,6 +525,9 @@ func TestWriterFlushMessagesBeforeClose(t *testing.T) {
524525
}
525526

526527
func TestSendMessagesLargerThenGRPCLimit(t *testing.T) {
528+
if version.Lt(os.Getenv("YDB_VERSION"), "25.0") {
529+
t.Skip()
530+
}
527531
scope := newScope(t)
528532

529533
const maxGrpcMsgSize = 10000 // bytes

0 commit comments

Comments
 (0)