~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

[merge] bialix: add a 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