Skip to content

Commit

Permalink
Update test_github_api.py
Browse files Browse the repository at this point in the history
  • Loading branch information
conorheffron authored Oct 12, 2024
1 parent f136449 commit d3ce140
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_github_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,33 @@

def test_github_api_conorheffron_success():
# given
hubspotClient = GitHubClient('conorheffron')
gitHubClient = GitHubClient('conorheffron')

# when
result = hubspotClient.main()
result = gitHubClient.main()

# then
print(json.dumps(result, sort_keys=True, indent=4))
assert result != None

def test_github_api_meta_success():
# given
hubspotClient = GitHubClient('meta')
gitHubClient = GitHubClient('meta')

# when
result = hubspotClient.main()
result = gitHubClient.main()

# then
print(json.dumps(result, sort_keys=True, indent=4))
assert result != None

def test_github_api_ibm_cloud_success():
# given
hubspotClient = GitHubClient('IBM-Cloud')
gitHubClient = GitHubClient('IBM-Cloud')

# when
result = hubspotClient.main()
result = gitHubClient.main()

# then
print(json.dumps(result, sort_keys=True, indent=4))
assert result != None
assert result != None

0 comments on commit d3ce140

Please sign in to comment.