~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-01 20:07:49 UTC
  • mfrom: (1711.2.112 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060801200749-e0bd496331bb4d2b
(bialix) Create a nice win32 installer

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