Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ydb/core/tablet_flat/ut/flat_test_db.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class TFlatDbWrapper : public ITestDb {

void Init(const TScheme& scheme) override {
Y_UNUSED(scheme);
Y_ENSURE("Not supported by flat db wrapper");
Y_ENSURE(false, "Not supported by flat db wrapper");
}

const TScheme& GetScheme() const override {
Expand All @@ -118,7 +118,7 @@ class TFlatDbWrapper : public ITestDb {

TString FinishTransaction(bool commit) override {
Y_UNUSED(commit);
Y_ENSURE("Not supported by flat db wrapper");
Y_ENSURE(false, "Not supported by flat db wrapper");
return "42";
}

Expand Down
Loading