Skip to content

Commit

Permalink
fix failing test on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
hmottestad committed Jun 5, 2024
1 parent 1dfd824 commit a7bd86a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public class LmdbStoreErrorHandlingTest {
public void testMapFullError(@TempDir File dataDir) {
LmdbStoreConfig config = new LmdbStoreConfig("spoc,psoc");
// set small db size
config.setValueDBSize(50000);
config.setTripleDBSize(50000);
config.setValueDBSize(500000);
config.setTripleDBSize(500000);
config.setAutoGrow(false);
Repository repo = new SailRepository(new LmdbStore(dataDir, config));

Expand Down

0 comments on commit a7bd86a

Please sign in to comment.