Skip to content

Commit

Permalink
Allow capital letters for rule W3687 (#3345)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Jun 20, 2024
1 parent c2a5e74 commit 4c3a445
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"tcp",
17,
"17",
"udp"
"udp",
"TCP",
"UDP",
"ICMP"
]
},
"type": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ def rule():
},
[],
),
(
{
"IpProtocol": "TCP",
},
[],
),
(
[], # wrong type
[],
Expand Down

0 comments on commit 4c3a445

Please sign in to comment.