ATProto Personal Data Server storage for OCaml
4
fork

Configure Feed

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

fix(lint): remove redundant test_ function prefixes (E330)

Remove test_ prefix from test function names across test files where
the module name already provides the Test namespace.

+2 -2
+2 -2
test/test_blob_store.ml
··· 47 47 (Int64.of_int (String.length data)) 48 48 blob_ref.size 49 49 50 - let test_put_returns_correct_mime_type () = 50 + let test_put_correct_mime_type () = 51 51 with_temp_dir @@ fun path -> 52 52 let store = Pds.Blob_store.v path in 53 53 let blob_ref = ··· 185 185 Alcotest.test_case "put returns correct size" `Quick 186 186 test_put_returns_correct_size; 187 187 Alcotest.test_case "put returns correct mime_type" `Quick 188 - test_put_returns_correct_mime_type; 188 + test_put_correct_mime_type; 189 189 Alcotest.test_case "get missing returns None" `Quick 190 190 test_get_missing_returns_none; 191 191 Alcotest.test_case "mem true for stored" `Quick test_mem_true_for_stored;