File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ defmodule Assertions do
261
261
true
262
262
263
263
"""
264
- @ spec assert_map_in_list ( map , [ map ] , [ any ] ) :: true | no_return
264
+ @ spec assert_map_in_list ( map , [ map ] , nonempty_list ( any ) ) :: true | no_return
265
265
@ spec assert_map_in_list ( map , [ map ] , comparison ) :: true | no_return
266
266
defmacro assert_map_in_list ( map , list , keys_or_comparison ) do
267
267
assertion =
@@ -328,7 +328,7 @@ defmodule Assertions do
328
328
true
329
329
330
330
"""
331
- @ spec assert_maps_equal ( map , map , [ any ] ) :: true | no_return
331
+ @ spec assert_maps_equal ( map , map , nonempty_list ( any ) ) :: true | no_return
332
332
@ spec assert_maps_equal ( map , map , comparison ) :: true | no_return
333
333
defmacro assert_maps_equal ( left , right , keys_or_comparison ) do
334
334
assertion =
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ defmodule Assertions.MixProject do
5
5
[
6
6
app: :assertions ,
7
7
version: "0.19.0" ,
8
- elixir: "~> 1.7 " ,
8
+ elixir: "~> 1.14 " ,
9
9
deps: deps ( ) ,
10
10
description: description ( ) ,
11
11
package: package ( ) ,
You can’t perform that action at this time.
0 commit comments