mirror of
https://github.com/safing/portbase
synced 2025-09-16 18:19:50 +00:00
Add support for MsgPack dsd format
This commit is contained in:
parent
8813102b7b
commit
6cde860324
2 changed files with 14 additions and 2 deletions
|
@ -121,7 +121,7 @@ func TestConversion(t *testing.T) {
|
|||
t.Parallel()
|
||||
|
||||
compressionFormats := []CompressionFormat{AutoCompress, GZIP}
|
||||
formats := []SerializationFormat{JSON, CBOR}
|
||||
formats := []SerializationFormat{JSON, CBOR, MsgPack}
|
||||
|
||||
for _, compression := range compressionFormats {
|
||||
for _, format := range formats {
|
||||
|
@ -233,7 +233,7 @@ func TestConversion(t *testing.T) {
|
|||
}
|
||||
|
||||
// test all formats
|
||||
simplifiedFormatTesting := []SerializationFormat{JSON, CBOR, GenCode}
|
||||
simplifiedFormatTesting := []SerializationFormat{JSON, CBOR, MsgPack, GenCode}
|
||||
|
||||
for _, format := range simplifiedFormatTesting {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue