We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56e19d commit 3f9220cCopy full SHA for 3f9220c
tests/integration/topic/setup/fixture.cpp
@@ -11,7 +11,7 @@ const bool EnableDirectRead = !std::string{std::getenv("PQ_EXPERIMENTAL_DIRECT_R
11
void TTopicTestFixture::SetUp() {
12
char* ydbVersion = std::getenv("YDB_VERSION");
13
14
- if (EnableDirectRead && ydbVersion != nullptr && std::string(ydbVersion) != "trunk" && std::string(ydbVersion) <= "25.1") {
+ if (EnableDirectRead && ydbVersion != nullptr && (std::string(ydbVersion) == "trunk" || std::string(ydbVersion) <= "25.1")) {
15
GTEST_SKIP() << "Skipping test for YDB version " << ydbVersion;
16
}
17
0 commit comments