Skip to content

Commit

Permalink
Consider the possible values (true or false) of the in-memory paramet…
Browse files Browse the repository at this point in the history
…er during tests
  • Loading branch information
Agustín González committed Apr 14, 2024
1 parent f8b6308 commit 2b17104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_compress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ TEST_CASE("Compress index", "[index][compress]") {
ScorerParams(""), // no scorer
std::nullopt, // no quantization
true, // check=true
false // in-memory=false
GENERATE(true, false) // in-memory=(true, false)
);
}

Expand Down Expand Up @@ -84,6 +84,6 @@ TEST_CASE("Compress quantized index", "[index][compress]") {
scorer_params,
pisa::Size(8),
true, // check=true,
false // in-memory=true
GENERATE(true, false) // in-memory=(true, false)
);
}

0 comments on commit 2b17104

Please sign in to comment.