~jfb-tempo-consulting/unifield-wm/sync-env-py3

« back to all changes in this revision

Viewing changes to unittest27/util.py

  • Committer: jf
  • Date: 2022-02-01 10:24:52 UTC
  • mfrom: (173.1.1 sync-env)
  • Revision ID: jfb@tempo-consulting.fr-20220201102452-rndr3uvmo030kqlf
[MERGE] US-9423: instance registration: do not validate an instance with no group on the sync server

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
        except KeyError:
143
143
            counts[elem] = 1
144
144
            order.append(elem)
145
 
    c = list(zip(order, [counts[elem] for elem in order]))
 
145
    c = zip(order, [counts[elem] for elem in order])
146
146
    return c
147
147
 
148
148
def _count_diff_hashable(actual, expected):