Skip to content

Commit 247d841

Browse files
authored
Hotfix: fix typo in OptimisticInsertTest (#847)
1 parent a998ffa commit 247d841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/storage/b_plus_tree_insert_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ TEST(BPlusTreeTests, DISABLED_OptimisticInsertTest) {
7474
for (size_t i = 0; i < num_keys; i++) {
7575
int64_t value = i & 0xFFFFFFFF;
7676
rid.Set(static_cast<int32_t>(i >> 32), value);
77-
index_key.SetFromInteger(i);
77+
index_key.SetFromInteger(2 * i);
7878
tree.Insert(index_key, rid);
7979
}
8080

0 commit comments

Comments
 (0)