comparison tests/test-glog.t @ 33721:24849d53697d

tests: clean up many print statements to be print functions instead Differential Revision: https://phab.mercurial-scm.org/D294
author Augie Fackler <augie@google.com>
date Thu, 15 Jun 2017 14:22:25 -0400
parents b11e8c67fb0f
children 6c1a9fd8361b
comparison
equal deleted inserted replaced
33720:27fb986e54d0 33721:24849d53697d
1631 ('string', 'x:e')))) 1631 ('string', 'x:e'))))
1632 1632
1633 Test glob expansion of pats 1633 Test glob expansion of pats
1634 1634
1635 $ expandglobs=`$PYTHON -c "import mercurial.util; \ 1635 $ expandglobs=`$PYTHON -c "import mercurial.util; \
1636 > print mercurial.util.expandglobs and 'true' or 'false'"` 1636 > print(mercurial.util.expandglobs and 'true' or 'false')"`
1637 $ if [ $expandglobs = "true" ]; then 1637 $ if [ $expandglobs = "true" ]; then
1638 > testlog 'a*'; 1638 > testlog 'a*';
1639 > else 1639 > else
1640 > testlog a*; 1640 > testlog a*;
1641 > fi; 1641 > fi;