diff options
Diffstat (limited to 'java/droidstubs_test.go')
-rw-r--r-- | java/droidstubs_test.go | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/java/droidstubs_test.go b/java/droidstubs_test.go index 573821749..82ebba7b1 100644 --- a/java/droidstubs_test.go +++ b/java/droidstubs_test.go @@ -244,17 +244,14 @@ func TestAddJSONData(t *testing.T) { } jsonData := map[string]interface{}{} prebuiltStubsSources.AddJSONData(&jsonData) - if fmt.Sprint(jsonData) != fmt.Sprint( + expectedOut := []map[string]interface{}{ map[string]interface{}{ - "Android": map[string]interface{}{}, - "Actions": []map[string]interface{}{ - map[string]interface{}{ - "Inputs": []string{}, - "Outputs": []string{}, - }, - }, - }) { - t.Errorf("The JSON data map isn't as expected %s.", jsonData) + "Inputs": []string{}, + "Outputs": []string{}, + }, + } + if !reflect.DeepEqual(jsonData["Actions"], expectedOut) { + t.Errorf("The JSON action data %#v isn't as expected %#v.", jsonData["Actions"], expectedOut) } } |