Skip to content

Commit

Permalink
Fix use of incorrect byte definition in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ajanikow committed Jun 14, 2021
1 parent 6e46431 commit 50caedd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions incremental_alter_configs_response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestIncrementalAlterConfigsResponse(t *testing.T) {
response = &IncrementalAlterConfigsResponse{
Resources: []*AlterConfigsResourceResponse{},
}
testVersionDecodable(t, "empty", response, alterResponseEmpty, 0)
testVersionDecodable(t, "empty", response, incrementalAlterResponseEmpty, 0)
if len(response.Resources) != 0 {
t.Error("Expected no groups")
}
Expand All @@ -41,5 +41,5 @@ func TestIncrementalAlterConfigsResponse(t *testing.T) {
},
},
}
testResponse(t, "response with error", response, alterResponsePopulated)
testResponse(t, "response with error", response, incrementalAlterResponsePopulated)
}

0 comments on commit 50caedd

Please sign in to comment.