~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-22 16:21:25 UTC
  • mto: This revision was merged to the branch mainline in revision 6404.
  • Revision ID: jelmer@samba.org-20111222162125-fmecr620ylc1t5lu
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        self.assertIsInstance(
84
84
            SampleTreeFormat.from_string("Sample tree format."),
85
85
            SampleTreeFormat)
86
 
        self.assertRaises(ValueError,
 
86
        self.assertRaises(AssertionError,
87
87
            SampleTreeFormat.from_string, "Different format string.")
88
88
 
89
89
    def test_get_set_default_format_by_key(self):