Merge pull request #83 from hobeone/patch-1

Return prettyprinted JSON strings for errors.
diff --git a/matchers/match_json_matcher.go b/matchers/match_json_matcher.go
index bedf851..efc5e15 100644
--- a/matchers/match_json_matcher.go
+++ b/matchers/match_json_matcher.go
@@ -57,5 +57,5 @@
 		return "", "", err
 	}
 
-	return actualString, expectedString, nil
+	return abuf.String(), ebuf.String(), nil
 }