Skip to content

Commit 3f9220c

Browse files
committed
test
1 parent f56e19d commit 3f9220c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/topic/setup/fixture.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const bool EnableDirectRead = !std::string{std::getenv("PQ_EXPERIMENTAL_DIRECT_R
1111
void TTopicTestFixture::SetUp() {
1212
char* ydbVersion = std::getenv("YDB_VERSION");
1313

14-
if (EnableDirectRead && ydbVersion != nullptr && std::string(ydbVersion) != "trunk" && std::string(ydbVersion) <= "25.1") {
14+
if (EnableDirectRead && ydbVersion != nullptr && (std::string(ydbVersion) == "trunk" || std::string(ydbVersion) <= "25.1")) {
1515
GTEST_SKIP() << "Skipping test for YDB version " << ydbVersion;
1616
}
1717

0 commit comments

Comments
 (0)