summaryrefslogtreecommitdiff
path: root/morphlib/localrepocache_tests.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-11 10:02:13 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-11 13:10:27 +0100
commitbeceedac2814fb5b77e003777dc996545a09758a (patch)
tree16869cb9e58ad75423c53f20ea241ca0bab74733 /morphlib/localrepocache_tests.py
parent68dd1b8db4432da0aad453a7e26cabba1290f85f (diff)
downloadmorph-beceedac2814fb5b77e003777dc996545a09758a.tar.gz
localrepocache unit tests: fix the bundle url
Bundle urls generated by lorry end with .bndl, this was fixed but the test was not adjusted, doh!
Diffstat (limited to 'morphlib/localrepocache_tests.py')
-rw-r--r--morphlib/localrepocache_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/localrepocache_tests.py b/morphlib/localrepocache_tests.py
index 6a906f44..55a74a59 100644
--- a/morphlib/localrepocache_tests.py
+++ b/morphlib/localrepocache_tests.py
@@ -28,7 +28,7 @@ class LocalRepoCacheTests(unittest.TestCase):
self.reponame = 'reponame'
self.repourl = 'git://example.com/reponame'
escaped_url = 'git___example_com_reponame'
- self.bundle_url = '%s%s' % (bundle_base_url, escaped_url)
+ self.bundle_url = '%s%s.bndl' % (bundle_base_url, escaped_url)
self.cachedir = '/cache/dir'
self.cache_path = '%s/%s' % (self.cachedir, escaped_url)
self.cache = set()