Minimal SQLite key-value store for OCaml
0
fork

Configure Feed

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

fix(lint): E616 use failf instead of fail (Fmt.str ...) in tests

+1 -1
+1 -1
test/test_sqlite.ml
··· 199 199 (fun name -> 200 200 try 201 201 let _ = Sqlite.Table.create db ~name in 202 - Alcotest.fail (Fmt.str "should reject invalid name: %S" name) 202 + Alcotest.failf "should reject invalid name: %S" name 203 203 with Invalid_argument _ -> ()) 204 204 invalid_names 205 205