]> git.mdlowis.com Git - archive/tide-ocaml.git/commitdiff
removed vestigial run_unit_tests function from scrollmap
authorMichael D. Lowis <mike.lowis@gentex.com>
Fri, 27 Oct 2017 14:48:53 +0000 (10:48 -0400)
committerMichael D. Lowis <mike.lowis@gentex.com>
Fri, 27 Oct 2017 14:48:53 +0000 (10:48 -0400)
lib/scrollmap.ml
lib/scrollmap.mli

index 12b27fef93189e4171776597927a35cefdf223cf..a8368fde86423a4a7472be089c3b53372289778e 100644 (file)
@@ -52,7 +52,3 @@ let scroll_dn map buf =
 let resize map buf width =
   if map.width == width then map
   else (make buf width (first map))
-
-(* Unit Tests *****************************************************************)
-
-let run_unit_tests () = ()
index 0344d43b2159aab5877435598e62b311d5dbf094..ec7845116428d94965848bb5dca91e49aac681d3 100644 (file)
@@ -4,4 +4,3 @@ val first : t -> int
 val scroll_up : t -> Buf.t -> t
 val scroll_dn : t -> Buf.t -> t
 val resize : t -> Buf.t -> int -> t
-val run_unit_tests : unit -> unit