Skip to content

Commit 841e0cb

Browse files
hifaizskclaude
andcommitted
fix: use lowercase builder method for limit field
Lombok generates builder methods from field names (lowercase). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e593fce commit 841e0cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/io/getstream/ChatMiscIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ void testGetRetentionPolicyRuns() throws Exception {
945945
var resp =
946946
client
947947
.chat()
948-
.getRetentionPolicyRuns(GetRetentionPolicyRunsRequest.builder().Limit(10).build())
948+
.getRetentionPolicyRuns(GetRetentionPolicyRunsRequest.builder().limit(10).build())
949949
.execute();
950950

951951
assertNotNull(resp.getData(), "GetRetentionPolicyRuns response should not be null");

0 commit comments

Comments
 (0)