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
@@ -546,7 +561,7 @@ defmodule Module.Types.IntegrationTest do
546
561
dynamic(
547
562
%Date.Range{} or %File.Stream{} or %GenEvent.Stream{} or %HashDict{} or %HashSet{} or
548
563
%IO.Stream{} or %MapSet{} or %Range{} or %Stream{}
549
-
) or fun() or list(term()) or non_struct_map()
564
+
) or empty_list() or fun() or non_empty_list(term(), term()) or non_struct_map()
550
565
551
566
where "date" was given the type:
552
567
@@ -575,7 +590,7 @@ defmodule Module.Types.IntegrationTest do
575
590
but expected a type that implements the Collectable protocol, it must be one of:
576
591
577
592
dynamic(%File.Stream{} or %HashDict{} or %HashSet{} or %IO.Stream{} or %MapSet{}) or binary() or
578
-
list(term()) or non_struct_map()
593
+
empty_list() or non_empty_list(term(), term()) or non_struct_map()
579
594
580
595
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
581
596
"""
@@ -1378,8 +1393,8 @@ defmodule Module.Types.IntegrationTest do
0 commit comments