Skip to content

Commit 6dbaedf

Browse files
committed
fix: fix tests, missing arguments
Signed-off-by: jmeridth <[email protected]>
1 parent 558242e commit 6dbaedf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_dependabot_file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def test_build_dependabot_file_with_github_actions(self):
311311
schedule:
312312
interval: 'weekly'
313313
"""
314-
result = build_dependabot_file(repo, False, [], None)
314+
result = build_dependabot_file(repo, False, [], None, None)
315315
self.assertEqual(result, expected_result)
316316

317317
def test_build_dependabot_file_with_github_actions_without_files(self):
@@ -324,7 +324,7 @@ def test_build_dependabot_file_with_github_actions_without_files(self):
324324
resp=response
325325
)
326326

327-
result = build_dependabot_file(repo, False, [], None)
327+
result = build_dependabot_file(repo, False, [], None, None)
328328
self.assertEqual(result, None)
329329

330330
def test_build_dependabot_file_with_groups(self):

0 commit comments

Comments
 (0)