/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_matchers.py

  • Committer: Jelmer Vernooij
  • Date: 2011-08-31 23:17:41 UTC
  • mto: This revision was merged to the branch mainline in revision 6119.
  • Revision ID: jelmer@samba.org-20110831231741-328lh2ipzqq4v3m3
review feedback from mgz

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
        mismatch = HasLayout(['a']).match(t)
131
131
        self.assertIsNot(None, mismatch)
132
132
        self.assertEquals(
133
 
            "[u'', u'a', u'b/', u'b/c'] != ['a']",
 
133
            "['a'] != [u'', u'a', u'b/', u'b/c']",
134
134
            mismatch.describe())
135
135
 
136
136
    def test_no_dirs(self):
144
144
        mismatch = HasLayout([u'', u'a', u'd/']).match(t)
145
145
        self.assertIsNot(None, mismatch)
146
146
        self.assertEquals(
147
 
            "[u'', u'a', u'b/', u'b/c'] != [u'', u'a']",
 
147
            "[u'', u'a'] != [u'', u'a', u'b/', u'b/c']",
148
148
            mismatch.describe())