You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -548,7 +564,7 @@ defmodule Module.Types.IntegrationTest do
548
564
dynamic(
549
565
%Date.Range{} or %File.Stream{} or %GenEvent.Stream{} or %HashDict{} or %HashSet{} or
550
566
%IO.Stream{} or %MapSet{} or %Range{} or %Stream{}
551
-
) or fun() or list(term()) or non_struct_map()
567
+
) or empty_list() or fun() or non_empty_list(term(), term()) or non_struct_map()
552
568
553
569
where "date" was given the type:
554
570
@@ -577,7 +593,7 @@ defmodule Module.Types.IntegrationTest do
577
593
but expected a type that implements the Collectable protocol, it must be one of:
578
594
579
595
dynamic(%File.Stream{} or %HashDict{} or %HashSet{} or %IO.Stream{} or %MapSet{}) or binary() or
580
-
list(term()) or non_struct_map()
596
+
empty_list() or non_empty_list(term(), term()) or non_struct_map()
581
597
582
598
hint: the :into option in for-comprehensions use the Collectable protocol to build its result. Either pass a valid data type or implement the protocol accordingly
583
599
"""
@@ -1380,8 +1396,8 @@ defmodule Module.Types.IntegrationTest do
0 commit comments