Skip to content

Commit

Permalink
fix: Handle null partNumber (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis authored Nov 20, 2023
1 parent 742756e commit 939c3f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/s3/e2eTest/src/PaginatorTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class PaginatorTest {
key = "list-parts-test"
uploadId = id
}
.transform { it.parts?.forEach { emit(it.partNumber) } }
.transform { it.parts?.forEach { it.partNumber?.let { emit(it) } } }
.toList()
.sorted()
}
Expand Down

0 comments on commit 939c3f0

Please sign in to comment.