Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c4a4e5a

Browse files
author
Kotsias, Panagiotis-Christos
committed
Removed status
1 parent fdd3d73 commit c4a4e5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_modules.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def test_methods(self):
2020
config = load(_CONFIG_PATH)
2121
client = Client.from_config(_CONFIG_PATH, _API_KEY)
2222
for fun, v in config.items():
23-
if not fun.startswith("_"):
23+
if not fun.startswith("_"): # disabled if _
2424
if v["module"] == self._MODULE:
25-
res, status, msg = getattr(client, fun)(**v["kwargs"])
26-
print(f"METHOD: {fun}, RTYPE: {type(res)}, STATUS: {status}")
25+
res, _ = getattr(client, fun)(**v["kwargs"])
26+
print(f"METHOD: {fun}, RTYPE: {type(res)}")
2727

2828

2929
class TestAccounts(Case):

0 commit comments

Comments
 (0)