~bzr-svn/bzr-svn/1.1

« back to all changes in this revision

Viewing changes to tests/test_errors.py

  • Committer: Jelmer Vernooij
  • Date: 2010-07-26 21:59:02 UTC
  • Revision ID: jelmer@samba.org-20100726215902-q6vfbjtn29bztwcy
Remove trailing whitespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
from bzrlib.plugins.svn.errors import (
31
31
    ERR_RA_DAV_PROPPATCH_FAILED,
32
 
    convert_error, 
33
 
    convert_svn_error, 
34
 
    DavRequestFailed, 
 
32
    convert_error,
 
33
    convert_svn_error,
 
34
    DavRequestFailed,
35
35
    InvalidPropertyValue,
36
36
    NotSvnBranchPath,
37
37
    PropertyChangeFailed,
97
97
        error = InvalidPropertyValue("svn:foobar", "corrupt")
98
98
 
99
99
        self.assertEqual(
100
 
          "Invalid property value for Subversion property svn:foobar: corrupt", 
 
100
          "Invalid property value for Subversion property svn:foobar: corrupt",
101
101
          str(error))
102
102
 
103
103
    def test_notsvnbranchpath_nonascii(self):