Skip to content

Commit

Permalink
codacy error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KorayKirli committed Nov 14, 2016
1 parent 6dab1ab commit 8dc9cd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_fdnDCIC.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def test_nothing():
def test_key():
key = fdnDCIC.FDN_Key(keypairs, "default")
assert(key)
assert(type(key.server) is str)
assert(type(key.authpw) is str)
assert(type(key.authid) is str)
assert isinstance(key.server, str)
assert isinstance(key.authpw, str)
assert isinstance(key.authid, str)


def test_key_file():
Expand Down

0 comments on commit 8dc9cd4

Please sign in to comment.