summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-04-22 17:15:18 +0300
committerLars Wirzenius <liw@liw.fi>2018-04-22 17:15:18 +0300
commit70bdb8e3b2184960aff5a19cc359ae69c188c8c5 (patch)
tree1b4429ee30eb7001bf918a134cd38eae54b5b376
parenta4e1e0ed7c2d7f408eaad7893c4e4f987a5c3631 (diff)
downloadick2-70bdb8e3b2184960aff5a19cc359ae69c188c8c5.tar.gz
Fix: exclude get_http_api from test coverage
-rw-r--r--ick2/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ick2/client.py b/ick2/client.py
index 3c0c7ec..4fd999d 100644
--- a/ick2/client.py
+++ b/ick2/client.py
@@ -140,7 +140,7 @@ class ControllerClient:
def set_http_api(self, api):
self._api = api
- def get_http_api(self):
+ def get_http_api(self): # pragma: no cover
return self._api
def set_controller_url(self, url):