test: remove unused var warning

This commit is contained in:
Thales Macedo Garitezi 2024-02-21 18:14:46 -03:00
parent 8e47503f7d
commit 985a3e3062
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ process_test_cmds([{push, N} | Tl], Cnt0) ->
Cnt = Cnt0 + N,
[{push, Cnt} | process_test_cmds(Tl, Cnt)].
iqueue_print(I = #iqueue{head = Hd, head_end = HdEnd, queue = Q, tail = Tl, tail_end = TlEnd}) ->
iqueue_print(#iqueue{head = Hd, head_end = HdEnd, queue = Q, tail = Tl, tail_end = TlEnd}) ->
#{
hd => {Hd, HdEnd},
tl => {Tl, TlEnd},