Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Sep 17, 2024
1 parent 1054544 commit a49bf7f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/nodestore/Database_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,6 @@ class Database_test : public TestBase
auto& section = p->section("sqlite");
section.set("page_size", "512");
section.set("journal_size_limit", "2582080");
section.set("max_page_count", "1073741823");
}
return Env(*this, std::move(p));
}();
Expand All @@ -469,7 +468,7 @@ class Database_test : public TestBase
BEAST_EXPECT(
s.txPragma.at(1) == "PRAGMA journal_size_limit=2582080;");
BEAST_EXPECT(
s.txPragma.at(2) == "PRAGMA max_page_count=1073741823;");
s.txPragma.at(2) == "PRAGMA max_page_count=4294967294;");
}
}
}
Expand Down

0 comments on commit a49bf7f

Please sign in to comment.