# HG changeset patch # User Martin von Zweigbergk # Date 1417300773 28800 # Node ID 390a2610eaef62cc66ed389c347c206e9891516a # Parent 88629daa727b22f880c6e7d75c341284830db55c generate-working-copy-states: make 'tracked' a string The only places the 'tracked' variable is only used is where it's converted to a string, so let's simplify by using the string value directly. diff -r 88629daa727b -r 390a2610eaef tests/generate-working-copy-states.py --- a/tests/generate-working-copy-states.py Tue Dec 02 13:28:07 2014 -0800 +++ b/tests/generate-working-copy-states.py Sat Nov 29 14:39:33 2014 -0800 @@ -7,14 +7,13 @@ for base in [None, 'content1']: for parent in set([None, 'content2']) | set([base]): for wcc in set([None, 'content3']) | set([base, parent]): - for tracked in (False, True): + for tracked in ('untracked', 'tracked'): def statestring(content): return content is None and 'missing' or content - trackedstring = tracked and 'tracked' or 'untracked' filename = "%s_%s_%s-%s" % (statestring(base), statestring(parent), statestring(wcc), - trackedstring) + tracked) combination.append((filename, base, parent, wcc)) # make sure we have stable output