Skip to content

Commit

Permalink
moved test-data to package
Browse files Browse the repository at this point in the history
  • Loading branch information
orlichter1 committed Aug 22, 2019
1 parent 63f08cd commit 6a1324a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Integrations/SymantecEndpointProtection_V2/SEPM_test.py
Expand Up @@ -7,14 +7,14 @@ def mock_demisto(mocker):


def _get_api_response():
response = "../../TestData/SEPM-endpoint-api-response.json"
response = "test-data/SEPM-endpoint-api-response.json"
with open(response, 'r') as f:
api_response = json.loads(f.read())
return api_response


def _get_expected_output():
response = "../../TestData/SEPM-expected-endpoint-extract.json"
response = "test-data/SEPM-expected-endpoint-extract.json"
with open(response, 'r') as f:
api_response = json.loads(f.read())
return api_response
Expand Down
File renamed without changes.

0 comments on commit 6a1324a

Please sign in to comment.