Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #407 +/- ##
==========================================
+ Coverage 90.36% 90.43% +0.07%
==========================================
Files 165 168 +3
Lines 7348 7415 +67
Branches 1073 1079 +6
==========================================
+ Hits 6640 6706 +66
Misses 599 599
- Partials 109 110 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 1 file with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
tests/integration/targets/aci_access_span_filter_group_entry/tasks/main.yml
Outdated
Show resolved
Hide resolved
tests/integration/targets/aci_access_span_filter_group_entry/tasks/main.yml
Outdated
Show resolved
Hide resolved
tests/integration/targets/aci_access_span_filter_group_entry/tasks/main.yml
Outdated
Show resolved
Hide resolved
| CHOICE_MAPPING.get(first_src_port, first_src_port) if first_src_port else "unspecified", | ||
| CHOICE_MAPPING.get(last_src_port, last_src_port) if last_src_port else "unspecified", | ||
| CHOICE_MAPPING.get(first_dest_port, first_dest_port) if first_dest_port else "unspecified", | ||
| CHOICE_MAPPING.get(last_dest_port, last_dest_port) if last_dest_port else "unspecified", |
There was a problem hiding this comment.
Can we use a simple function to return the port value?
def get_port_value(port):
return CHOICE_MAPPING.get(port, port) if port else "unspecified"
…n filter group support
…ss span filter group support
…ilter_port_mapping
18654ca to
19c5812
Compare
No description provided.