Merge lp://staging/~jszakmeister/bzr-svn/fix-test-repr into lp://staging/~jelmer/bzr-svn/1.0

Proposed by John Szakmeister
Status: Merged
Merged at revision: not available
Proposed branch: lp://staging/~jszakmeister/bzr-svn/fix-test-repr
Merge into: lp://staging/~jelmer/bzr-svn/1.0
Diff against target: 12 lines
1 file modified
tests/test_repository.py (+1/-1)
To merge this branch: bzr merge lp://staging/~jszakmeister/bzr-svn/fix-test-repr
Reviewer Review Type Date Requested Status
Jelmer Vernooij Pending
Review via email: mp+14341@code.staging.launchpad.net
To post a comment you must log in.
Revision history for this message
John Szakmeister (jszakmeister) wrote :

I believe this is the obvious fix to the problem rather than trying to compute the url. Is this acceptable?

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'tests/test_repository.py'
2--- tests/test_repository.py 2009-08-09 11:09:19 +0000
3+++ tests/test_repository.py 2009-11-03 08:25:17 +0000
4@@ -66,7 +66,7 @@
5
6 repos = Repository.open(self.repos_url)
7
8- self.assertEqual("SvnRepository('%s')" % urlutils.local_path_to_url(urlutils.join(self.test_dir, "a")), repos.__repr__())
9+ self.assertEqual("SvnRepository('%s')" % self.repos_url, repos.__repr__())
10
11 def test_gather_stats(self):
12 repos = Repository.open(self.repos_url)

Subscribers

People subscribed via source and target branches