Coverage tests in ees package and updated Go version in Ansible scripts

This commit is contained in:
nickolasdaniel
2021-03-12 17:01:55 +02:00
committed by Dan Christian Bogos
parent d9641e9cf7
commit 4be82cd76f
23 changed files with 517 additions and 143 deletions

View File

@@ -967,4 +967,9 @@ func TestOrderedNavigableMapOrderedFields(t *testing.T) {
if !reflect.DeepEqual(exp, rcv) {
t.Errorf("Expected %+v, received %+v", exp, rcv)
}
exp2 := []string{"1003", "1004", "1006"}
rcv2 := nm.OrderedFieldsAsStrings()
if !reflect.DeepEqual(exp2, rcv2) {
t.Errorf("Expected %+v, received %+v", exp2, rcv2)
}
}