##// END OF EJS Templates
test-filelog: move from dict() construction to {} literals...
Augie Fackler -
r20684:2761a791 default
parent child Browse files
Show More
@@ -13,7 +13,7 b" fl = repo.file('foobar')"
13 13 def addrev(text, renamed=False):
14 14 if renamed:
15 15 # data doesn't matter. Just make sure filelog.renamed() returns True
16 meta = dict(copyrev=hex(nullid), copy='bar')
16 meta = {'copyrev': hex(nullid), 'copy': 'bar'}
17 17 else:
18 18 meta = {}
19 19
General Comments 0
You need to be logged in to leave comments. Login now