Skip to content

Commit

Permalink
exclude parts that are not testable
Browse files Browse the repository at this point in the history
  • Loading branch information
KorayKirli committed Dec 8, 2016
1 parent 2f0f6ae commit 1a23158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wranglertools/fdnDCIC.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, key):
me_page = self.server + 'me'
r = requests.get(me_page, auth=self.auth)
self.check = False
if r.status_code == 307:
if r.status_code == 307: # pragma: no cover
self.check = True
res = r.json()
self.user = res['@id']
Expand Down

0 comments on commit 1a23158

Please sign in to comment.