Skip to content

Commit

Permalink
Fix opaque type warning for StreamData
Browse files Browse the repository at this point in the history
  • Loading branch information
sabiwara committed Jan 3, 2024
1 parent bee7e3d commit dde4770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/support/test_data_generators.ex
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ defmodule Aja.TestDataGenerators do

def do_map_of(key_generator, value_generator) do
[&Map.new/1, &Aja.OrdMap.new/1]
|> Enum.map(fn fun -> map(list_of({key_generator, value_generator}), fun) end)
|> Enum.map(fn fun -> map(list_of(tuple({key_generator, value_generator})), fun) end)
|> one_of()
end
end

0 comments on commit dde4770

Please sign in to comment.