~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Lukáš Lalinský
  • Date: 2007-08-07 14:57:35 UTC
  • mto: (2755.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2709.
  • Revision ID: lalinsky@gmail.com-20070807145735-373c9kkog1lu3w9m
Fixed broken test_author_* blackbox tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
488
488
        tree = self.make_branch_and_tree('tree')
489
489
        self.build_tree(['tree/hello.txt'])
490
490
        tree.add('hello.txt')
491
 
        self.run_bzr("commit -m hello --author='John Doe <jdoe@example.com>'"
 
491
        self.run_bzr("commit -m hello --author='John Doe <jdoe@example.com>' "
492
492
                     "tree/hello.txt")
493
493
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
494
494
        properties = last_rev.properties
499
499
        tree = self.make_branch_and_tree('tree')
500
500
        self.build_tree(['tree/hello.txt'])
501
501
        tree.add('hello.txt')
502
 
        out, err = self.run_bzr("commit -m hello --author='John Doe'"
 
502
        out, err = self.run_bzr("commit -m hello --author='John Doe' "
503
503
                                "tree/hello.txt")
504
504
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
505
505
        properties = last_rev.properties