10000 Fix test helper once and for all · buiduyhieu1/github3.py@807f0e1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 807f0e1

Browse files
committed
Fix test helper once and for all
1 parent a59ee75 commit 807f0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_repos_deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def find(func, iterable):
7-
return next(filter(func, iterable))
7+
return next(iter(filter(func, iterable)))
88

99

1010
class TestDeployment(IntegrationHelper):

0 commit comments

Comments
 (0)
0