Skip to content

Commit 88cab89

Browse files
committed
Fix error code 243 -NOT_ENOUGH_SPACE
1 parent d7dac9e commit 88cab89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client-v2/src/test/java/com/clickhouse/client/HttpTransportTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ public void testErrorWithSendProgressHeaders() throws Exception {
779779

780780
} catch (ServerException e) {
781781
// 241 - MEMORY_LIMIT_EXCEEDED or 243 -NOT_ENOUGH_SPACE
782-
Assert.assertTrue(e.getCode() == 241 || e.getCode() == 242);
782+
Assert.assertTrue(e.getCode() == 241 || e.getCode() == 243);
783783
}
784784
}
785785
}

0 commit comments

Comments
 (0)