##// END OF EJS Templates
tests: fix template test output
Matt Mackall -
r17387:1fce4785 default
parent child Browse files
Show More
@@ -1366,25 +1366,25 b' Error on syntax:'
1366 Behind the scenes, this will throw TypeError
1366 Behind the scenes, this will throw TypeError
1367
1367
1368 $ hg log -l 3 --template '{date|obfuscate}\n'
1368 $ hg log -l 3 --template '{date|obfuscate}\n'
1369 abort: Template filter 'obfuscate' is not compatible with keyword 'date'
1369 abort: template filter 'obfuscate' is not compatible with keyword 'date'
1370 [255]
1370 [255]
1371
1371
1372 Behind the scenes, this will throw a ValueError
1372 Behind the scenes, this will throw a ValueError
1373
1373
1374 $ hg log -l 3 --template 'line: {desc|shortdate}\n'
1374 $ hg log -l 3 --template 'line: {desc|shortdate}\n'
1375 abort: Template filter 'shortdate' is not compatible with keyword 'desc'
1375 abort: template filter 'shortdate' is not compatible with keyword 'desc'
1376 [255]
1376 [255]
1377
1377
1378 Behind the scenes, this will throw AttributeError
1378 Behind the scenes, this will throw AttributeError
1379
1379
1380 $ hg log -l 3 --template 'line: {date|escape}\n'
1380 $ hg log -l 3 --template 'line: {date|escape}\n'
1381 abort: Template filter 'escape' is not compatible with keyword 'date'
1381 abort: template filter 'escape' is not compatible with keyword 'date'
1382 [255]
1382 [255]
1383
1383
1384 Behind the scenes, this will throw ValueError
1384 Behind the scenes, this will throw ValueError
1385
1385
1386 $ hg tip --template '{author|email|date}\n'
1386 $ hg tip --template '{author|email|date}\n'
1387 abort: Template filter 'datefilter' is not compatible with keyword 'author'
1387 abort: template filter 'datefilter' is not compatible with keyword 'author'
1388 [255]
1388 [255]
1389
1389
1390 $ cd ..
1390 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now