General cleanup (#999)

This commit is contained in:
Nathan Baulch
2025-08-24 20:18:46 +10:00
committed by GitHub
parent 18a2148713
commit 36df8eef6e
15 changed files with 47 additions and 44 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ func testgenValid(t *testing.T, input string, jsonRef string) {
assert.NoError(t, err)
var actual interface{}
err = json.Unmarshal([]byte(j), &actual)
err = json.Unmarshal(j, &actual)
assert.NoError(t, err)
testsuite.CmpJSON(t, "", ref, actual)