Skip to content
This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Commit 67ce07f

Browse files
committed
Fix tests
1 parent 3c94cbc commit 67ce07f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

highfive/tests/test_integration_tests.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_new_pr_non_contributor(self):
8888
(
8989
(
9090
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '7'),
91-
{'assignee': 'nrc'}
91+
{'assignees': ['nrc']}
9292
),
9393
{'body': {}},
9494
),
@@ -130,7 +130,7 @@ def test_new_pr_empty_body(self):
130130
(
131131
(
132132
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '7'),
133-
{'assignee': 'nrc'}
133+
{'assignees': ['nrc']}
134134
),
135135
{'body': {}},
136136
),
@@ -171,7 +171,7 @@ def test_new_pr_contributor(self):
171171
(
172172
(
173173
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '7'),
174-
{'assignee': 'nrc'}
174+
{'assignees': ['nrc']}
175175
),
176176
{'body': {}},
177177
),
@@ -215,7 +215,7 @@ def test_new_pr_contributor_with_labels(self):
215215
(
216216
(
217217
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '7'),
218-
{'assignee': 'nrc'}
218+
{'assignees': ['nrc']}
219219
),
220220
{'body': {}},
221221
),
@@ -266,7 +266,7 @@ def test_author_is_commenter(self):
266266
(
267267
(
268268
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '1'),
269-
{'assignee': 'davidalber'}
269+
{'assignees': ['davidalber']}
270270
),
271271
{'body': {}},
272272
),
@@ -293,7 +293,7 @@ def test_author_not_commenter_is_collaborator(self):
293293
(
294294
(
295295
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '1'),
296-
{'assignee': 'davidalber'}
296+
{'assignees': ['davidalber']}
297297
),
298298
{'body': {}},
299299
),

0 commit comments

Comments
 (0)