Skip to content

Commit

Permalink
fixup! Add webmachine-examples opam to fix ocaml-ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgilchrist committed Aug 6, 2021
1 parent 2132261 commit 5fd7e44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/webmachine.mli
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ end
(* static mock time *)
module MockClock = struct
let now = fun () -> 152632270
let now = fun () -> 1526322704l
end
(* using Unix.gettimeofday *)
Expand Down
2 changes: 1 addition & 1 deletion lib_test/test_dispatch.ml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module Id = struct
end

module ClockMock = struct
let now = fun () -> 152632270
let now = fun () -> 1526322704l
end

module Webmachine = struct
Expand Down
2 changes: 1 addition & 1 deletion lib_test/test_logic.ml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module Id = struct
end

module ClockMock = struct
let now = fun () -> 152632270
let now = fun () -> 1526322704l
end

module Webmachine = struct
Expand Down

0 comments on commit 5fd7e44

Please sign in to comment.