|
|
@@ -25,7 +25,7 @@ func TestConsumerMetadataResponseError(t *testing.T) {
|
|
|
t.Error("Decoding produced incorrect error value.")
|
|
|
}
|
|
|
|
|
|
- if response.CoordinatorId != 0 {
|
|
|
+ if response.CoordinatorID != 0 {
|
|
|
t.Error("Decoding produced incorrect ID.")
|
|
|
}
|
|
|
|
|
|
@@ -47,7 +47,7 @@ func TestConsumerMetadataResponseSuccess(t *testing.T) {
|
|
|
t.Error("Decoding produced error value where there was none.")
|
|
|
}
|
|
|
|
|
|
- if response.CoordinatorId != 0xAB {
|
|
|
+ if response.CoordinatorID != 0xAB {
|
|
|
t.Error("Decoding produced incorrect coordinator ID.")
|
|
|
}
|
|
|
|