We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f8371a commit eb1205bCopy full SHA for eb1205b
src/main/java/com/epam/reportportal/util/test/SocketUtils.java
@@ -86,9 +86,9 @@ public List<String> call() throws Exception {
86
.trim());
87
if (contentLength > 0) {
88
char[] body = new char[contentLength];
89
- int actualREad = in.read(body, 0, contentLength);
90
- if (actualREad < contentLength) {
91
- throw new IOException("Expected " + contentLength + " bytes, but only read " + actualREad + " bytes");
+ int actualRead = in.read(body, 0, contentLength);
+ if (actualRead < contentLength) {
+ throw new IOException("Expected " + contentLength + " bytes, but only read " + actualRead + " bytes");
92
}
93
builder.append(System.lineSeparator());
94
builder.append(new String(body));
0 commit comments