Skip to content

Commit 88a997f

Browse files
committed
breaking lines down
1 parent dc27d42 commit 88a997f

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

tests/test_audit.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@
2727
None,
2828
None,
2929
None,
30-
"action:protected_branch.create action:repo.download_zip action:team.add_member",
30+
(
31+
"action:protected_branch.create action:repo.download_zip "
32+
"action:team.add_member"
33+
),
3134
),
3235
# Single actor
3336
(None, ["octocat"], None, None, "actor:octocat"),
@@ -73,15 +76,22 @@
7376
["octocat"],
7477
["exclude-user"],
7578
None,
76-
"action:protected_branch.create action:repo.download_zip actor:octocat -actor:exclude-user",
79+
(
80+
"action:protected_branch.create action:repo.download_zip "
81+
"actor:octocat -actor:exclude-user"
82+
),
7783
),
7884
# Maximum complexity
7985
(
8086
["org.create", "team.add_member", "repo.destroy"],
8187
["octocat", "monalisa", "admin-user"],
8288
["bot-user1", "bot-user2", "exclude-admin"],
8389
None,
84-
"action:org.create action:team.add_member action:repo.destroy actor:octocat actor:monalisa actor:admin-user -actor:bot-user1 -actor:bot-user2 -actor:exclude-admin",
90+
(
91+
"action:org.create action:team.add_member action:repo.destroy "
92+
"actor:octocat actor:monalisa actor:admin-user "
93+
"-actor:bot-user1 -actor:bot-user2 -actor:exclude-admin"
94+
),
8595
),
8696
# All None values
8797
(None, None, None, None, ""),

0 commit comments

Comments
 (0)