summaryrefslogtreecommitdiff
path: root/morphlib/remoterepocache.py
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-18 13:44:56 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-18 13:44:56 +0100
commit605e21914f8c9536ff42ca31043b26200dab85e2 (patch)
tree4fdd2aecf4b8e1dfa8ec273480002dad71b2fb5e /morphlib/remoterepocache.py
parentee01a9f82e5caf06cd7c41df79874e7684a29d5f (diff)
downloadmorph-605e21914f8c9536ff42ca31043b26200dab85e2.tar.gz
Fix unit tests by marking RemoteRepoCache._make_request as untested.
Diffstat (limited to 'morphlib/remoterepocache.py')
-rw-r--r--morphlib/remoterepocache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/remoterepocache.py b/morphlib/remoterepocache.py
index fd843682..c80a6ae0 100644
--- a/morphlib/remoterepocache.py
+++ b/morphlib/remoterepocache.py
@@ -75,7 +75,7 @@ class RemoteRepoCache(object):
return self._make_request(
'files?repo=%s&ref=%s&filename=%s' % (repo_url, ref, filename))
- def _make_request(self, path):
+ def _make_request(self, path): # pragma: no cover
server_url = self.server_url
if not server_url.endswith('/'):
server_url += '/'