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

« back to all changes in this revision

Viewing changes to unittest27/util.py

  • Committer: Olivier DOSSMANN
  • Date: 2013-09-17 07:21:50 UTC
  • Revision ID: od@tempo-consulting.fr-20130917072150-gld4t6ckxstgfvvb
[NEW] Scripts that create a synchronization environment, dump files and create an archive with dumps + some scripts to restore DB and launch an OpenERP 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):