Skip to content

Commit 3b6712d

Browse files
committed
fixing a typo in testing code
1 parent 346ecdd commit 3b6712d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

artio-binary-entrypoint-system-tests/src/test/java/uk/co/real_logic/artio/system_tests/BinaryEntryPointClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ private <T extends MessageDecoderFlyweight> T readInternal(final T messageDecode
206206
final int readHeader = readSocket();
207207
if (readHeader != headerLength)
208208
{
209-
throw new IllegalStateException("readHeader=" + readHeader + ",headerLength" + headerLength);
209+
throw new IllegalStateException("readHeader=" + readHeader + ",headerLength=" + headerLength);
210210
}
211211

212212
final int totalLength = readSofh(unsafeReadBuffer, 0, BINARY_ENTRYPOINT_TYPE);

0 commit comments

Comments
 (0)