~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_help.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 06:52:39 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730065239-03b4ac02d9f56202
branding: change Bazaar-NG to Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        for cmd in ['--help', 'help', '-h', '-?']:
29
29
            output = self.runbzr(cmd)[0]
30
30
            line1 = output.split('\n')[0]
31
 
            if not line1.startswith('Bazaar-NG'):
 
31
            if not line1.startswith('Bazaar'):
32
32
                self.fail("bad output from bzr %s:\n%r" % (cmd, output))
33
33
        # see https://launchpad.net/products/bzr/+bug/35940, -h doesn't work
34
34