CCSDS 503.0-B Tracking Data Message parser and serializer
0
fork

Configure Feed

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

pus: rename test_ functions, fix service_type doc (merlint E330/E410)

+4 -4
+2 -1
lib/tdm.ml
··· 286 286 Buffer.add_string buf "DATA_START\n"; 287 287 List.iter 288 288 (fun obs -> 289 - Buffer.add_string buf (Fmt.str "%s = %s %.14g\n" obs.keyword obs.epoch obs.value)) 289 + Buffer.add_string buf 290 + (Fmt.str "%s = %s %.14g\n" obs.keyword obs.epoch obs.value)) 290 291 tdm.observations; 291 292 Buffer.add_string buf "DATA_STOP\n"; 292 293 Buffer.contents buf
+2 -3
test/interop/orekit/test.ml
··· 155 155 List.map (fun r -> Alcotest.test_case r.name `Quick (test_parse r)) rows 156 156 ); 157 157 ( "roundtrip", 158 - List.map 159 - (fun r -> Alcotest.test_case r.name `Quick (roundtrip r)) 160 - rows ); 158 + List.map (fun r -> Alcotest.test_case r.name `Quick (roundtrip r)) rows 159 + ); 161 160 ]