mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 02:26:26 +05:00
fixed comparison values
This commit is contained in:
@@ -406,7 +406,7 @@ func TestMatchLoadCsvWithStorRating(t *testing.T) {
|
||||
refMap = qMap
|
||||
continue
|
||||
}
|
||||
if !reflect.DeepEqual(refMap, qVal) {
|
||||
if !reflect.DeepEqual(refMap, qMap) {
|
||||
t.Errorf("Missmatched data for key: %s\n\t reference val: %+v \n\t retrieved val: %+v\n on iteration: %d", key, refMap, qMap, idx)
|
||||
}
|
||||
}
|
||||
@@ -443,7 +443,7 @@ func TestMatchLoadCsvWithStorAccounting(t *testing.T) {
|
||||
refMap = qMap
|
||||
continue
|
||||
}
|
||||
if !reflect.DeepEqual(refMap, qVal) {
|
||||
if !reflect.DeepEqual(refMap, qMap) {
|
||||
t.Errorf("Missmatched data for key: %s\n\t, reference val: %+v \n\t retrieved value: %+v\n on iteration: %d", key, refMap, qMap, idx)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user