Browse Source

ft: test

master
lijie 2 years ago
parent
commit
f6e446d1d3
1 changed files with 1 additions and 11 deletions
  1. +1
    -11
      src/testCase/utTpfm.erl

+ 1
- 11
src/testCase/utTpfm.erl View File

@ -679,14 +679,4 @@ delL(L1, L2) ->
L1 -- L2.
delM(M1, M2) ->
doDelM(maps:iterator(M2), M1).
doDelM(Iterator, M1) ->
case maps:next(Iterator) of
{K, _V, none} ->
maps:remove(K, M1);
{K, _V, NextI} ->
doDelM(NextI, maps:remove(K, M1));
_ ->
M1
end.
utMapsFold:diff(M1, M2).

Loading…
Cancel
Save