Skip to content

Commit 320e66d

Browse files
committed
Fix failing tests #349
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent a745ca1 commit 320e66d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

dje/tests/testfiles/test_dataset_workflow.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
],
1717
"is_active": true,
1818
"include_applies_to": true,
19-
"include_product": true
19+
"include_product": true,
20+
"issue_tracker_id": ""
2021
}
2122
},
2223
{

workflow/integrations/github.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88

99
from urllib.parse import urlparse
1010

11-
import requests
1211
from django.conf import settings
1312

13+
import requests
1414

1515
GITHUB_API_URL = "https://api.github.com"
1616
DEJACODE_SITE_URL = settings.SITE_URL.rstrip("/")
1717

18+
1819
class GitHubIntegration:
1920
dataspace = None
2021
api_url = GITHUB_API_URL

0 commit comments

Comments
 (0)