Skip to content

Commit 2858dd0

Browse files
Fix for java 8, getFirst is replaced with get(0)
1 parent 8a24fd2 commit 2858dd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-test/src/test/java/org/cloudfoundry/client/v3/SpaceQuotasTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public void createWithSpaceRelationship() {
164164
.getRelationships()
165165
.getSpaces()
166166
.getData()
167-
.getFirst()
167+
.get(0)
168168
.getId())
169169
.isEqualTo(spaceId);
170170
})

0 commit comments

Comments
 (0)