AX.25 Amateur Radio Link-Layer Protocol
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+5 -5
+1 -1
test/interop/pyax25/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ax25 csvt alcotest) 3 + (libraries ax25 csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+4 -4
test/interop/pyax25/test.ml
··· 18 18 } 19 19 20 20 let ui_frame_codec = 21 - Csvt.( 21 + Csv.( 22 22 Row.( 23 23 obj (fun name source destination digipeaters pid_hex info_hex frame_hex -> 24 24 { ··· 47 47 } 48 48 49 49 let ext_bit_codec = 50 - Csvt.( 50 + Csv.( 51 51 Row.( 52 52 obj (fun name frame_hex n_callsigns last_index -> 53 53 { name; frame_hex; n_callsigns; last_index }) ··· 87 87 88 88 let ui_frame_encoding () = 89 89 let rows = 90 - match Csvt.decode_file ui_frame_codec (trace "ui_frames.csv") with 90 + match Csv.decode_file ui_frame_codec (trace "ui_frames.csv") with 91 91 | Ok rows -> rows 92 92 | Error e -> Alcotest.failf "CSV decode: %s" e 93 93 in ··· 116 116 117 117 let extension_bits () = 118 118 let rows = 119 - match Csvt.decode_file ext_bit_codec (trace "extension_bits.csv") with 119 + match Csv.decode_file ext_bit_codec (trace "extension_bits.csv") with 120 120 | Ok rows -> rows 121 121 | Error e -> Alcotest.failf "CSV decode: %s" e 122 122 in