We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba5e194 commit 709f520Copy full SHA for 709f520
1 file changed
test/streaming_round_trip_test.exs
@@ -7,7 +7,7 @@ defmodule Msgpack.StreamingRoundTripTest do
7
alias Msgpack.StreamDecoder
8
9
property "a round trip through the streaming API is lossless" do
10
- check all(terms <- list_of_encodable_terms(), chunk_size <- StreamData.integer(1..20)) do
+ check all(terms <- encodable_terms(), chunk_size <- StreamData.integer(1..20)) do
11
binaries =
12
StreamEncoder.encode(terms)
13
|> Stream.map(fn {:ok, binary} -> binary end)
@@ -26,7 +26,7 @@ defmodule Msgpack.StreamingRoundTripTest do
26
end
27
28
29
- defp list_of_encodable_terms do
+ defp encodable_terms() do
30
StreamData.list_of(encodable_term())
31
32
0 commit comments