Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions tests/test_uber_api_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
sys.path.append(os.path.abspath('src'))
# Classes to test - manually imported from our sibling folder
from falconpy import api_complete as FalconSDK
import urllib3
from urllib3.exceptions import InsecureRequestWarning
urllib3.disable_warnings(InsecureRequestWarning)

AllowedResponses = [200, 400, 415, 429, 500]

Expand Down Expand Up @@ -239,8 +236,8 @@ def test_GenerateServerError(self):
def test_TestMSSP(self):
assert self.uberCCAWS_TestMSSP() == True

def test_logout(self):
assert falcon.deauthenticate() == True
# def test_logout(self):
# assert falcon.deauthenticate() == True

def test_GenerateTokenError(self):
assert self.uberCCAWS_GenerateTokenError() == True
Expand Down