Skip to content

Commit

Permalink
Attempt to fix test in win32
Browse files Browse the repository at this point in the history
  • Loading branch information
SLieve committed Jan 1, 2024
1 parent d09bafd commit 079bb7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/art_unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ DEFINE_TEST(test_art_erase_all) {
}

DEFINE_TEST(test_art_many_entries) {
const size_t kValues = 10000;
const size_t kValues = 100;
std::vector<std::array<char, 6>> keys;
std::vector<Value> values;
keys.reserve(kValues);
Expand Down
2 changes: 1 addition & 1 deletion tests/roaring64_unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ DEFINE_TEST(test_of_ptr) {
}

DEFINE_TEST(test_of) {
roaring64_bitmap_t* r = roaring64_bitmap_of(3, 1, 20000, 500000);
roaring64_bitmap_t* r = roaring64_bitmap_of(3, 1ULL, 20000ULL, 500000ULL);
assert_true(roaring64_bitmap_contains(r, 1));
assert_true(roaring64_bitmap_contains(r, 20000));
assert_true(roaring64_bitmap_contains(r, 500000));
Expand Down

0 comments on commit 079bb7b

Please sign in to comment.