Pure OCaml B-tree implementation for persistent storage
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lint): resolve E330 redundant module prefix in atp test files

Drop test_ prefix from type and function names in test.ml modules
where the module name already provides the Test namespace.

+1 -1
+1 -1
test/test_btree.ml
··· 380 380 let prev = ref 0L in 381 381 Btree.Table.iter tree (fun rowid _ -> 382 382 if rowid <= !prev then 383 - Alcotest.fail (Fmt.str "out of order: %Ld after %Ld" rowid !prev); 383 + Alcotest.failf "out of order: %Ld after %Ld" rowid !prev; 384 384 prev := rowid); 385 385 Alcotest.(check int64) "last rowid" (Int64.of_int n) !prev 386 386