Skip to content

Commit

Permalink
Rename variable in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvanoosten committed Oct 11, 2023
1 parent deb81f3 commit b479904
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ object ManyPartitionsQueueSizeBasedFetchStrategySpec extends ZIOSpecDefaultSlf4j
result3 <- fetchStrategy.selectPartitionsToFetch(streams)
result4 <- fetchStrategy.selectPartitionsToFetch(streams)
result5 <- fetchStrategy.selectPartitionsToFetch(streams)
result = Chunk(result1, result2, result3, result4, result5)
results = Chunk(result1, result2, result3, result4, result5)
} yield assertTrue(
result.forall(_.size == 2),
result.forall(_.forall(_.topic() == "topic2")),
result.flatten.toSet.size == 3
results.forall(_.size == 2),
results.forall(_.forall(_.topic() == "topic2")),
results.flatten.toSet.size == 3
)
}
)
Expand Down

0 comments on commit b479904

Please sign in to comment.