~ubuntu-branches/ubuntu/raring/bzr-svn/raring

« back to all changes in this revision

Viewing changes to tests/test_errors.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2010-07-30 23:14:36 UTC
  • mfrom: (1.1.28 upstream) (3.3.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100730231436-po8j0ibgjn2d6hy0
Tags: 1.0.3-1
* New upstream release.
 + Provides BranchConfig._get_change_editor. Closes: #572109
 + Supports more trunk layout levels. Closes: #573988
* Bump standards version to 3.9.1.
* Mark as supporting bzr 2.2.
* Suggest bzr-rewrite rather than bzr-rebase. LP: #481730

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):