Skip to content

Commit 9fcbc2b

Browse files
committed
Improve erl formatting for maps
1 parent fa47fcb commit 9fcbc2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gen/test/gleam@any_test.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,11 @@ tuple_test() ->
152152
field_test() ->
153153
{ok, OkAtom} = gleam@atom:from_string(<<"ok">>),
154154
gleam@expect:equal(
155-
gleam@any:field(gleam@any:from(#{}#{ok => 1}), OkAtom),
155+
gleam@any:field(gleam@any:from(#{ok => 1}), OkAtom),
156156
{ok, gleam@any:from(1)}
157157
),
158158
gleam@expect:equal(
159-
gleam@any:field(gleam@any:from(#{}#{ok => 3}#{earlier => 2}), OkAtom),
159+
gleam@any:field(gleam@any:from(#{earlier => 2, ok => 3}), OkAtom),
160160
{ok, gleam@any:from(3)}
161161
),
162162
gleam@expect:is_error(gleam@any:field(gleam@any:from(#{}), OkAtom)),

0 commit comments

Comments
 (0)