Skip to content

Commit

Permalink
Chore: Fix lint and lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
lordsarcastic committed Oct 23, 2024
1 parent f1f8495 commit f6668e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
10 changes: 5 additions & 5 deletions integrations/jira/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 3 additions & 8 deletions integrations/jira/tests/test_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ async def test_full_sync_using_mocked_3rd_party(
monkeypatch.setattr(JiraClient, "get_all_projects", projects_mock)
monkeypatch.setattr(JiraClient, "get_all_issues", issues_mock)
config = {
"event_listener": {
"type": "POLLING"
},
"event_listener": {"type": "POLLING"},
"integration": {
"config": {
"jira_host": "https://getport.atlassian.net",
"atlassian_user_email": "[email protected]",
"atlassian_user_token": "asdf"
"atlassian_user_token": "asdf",
}
},
"port": {
Expand All @@ -42,10 +40,7 @@ async def test_full_sync_using_mocked_3rd_party(
},
}
print(config)
app = get_integration_ocean_app(
INTEGRATION_PATH,
config
)
app = get_integration_ocean_app(INTEGRATION_PATH, config)
resource_configs = get_integation_resource_configs(INTEGRATION_PATH)
for resource_config in resource_configs:
print(resource_config)
Expand Down

0 comments on commit f6668e6

Please sign in to comment.