Skip to content

Commit

Permalink
Add blank line at the end of manifest file
Browse files Browse the repository at this point in the history
Split requires into multiple lines instead of using and to combine the statement
  • Loading branch information
rickwu666666 committed Jan 14, 2025
1 parent 39f62d3 commit fa794f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit: manifest entry
id: has_wifi_ap_host
_name: Does WiFi AP paring HOST machine available for testing WiFi AP mode?
value-type: bool
value-type: bool
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ imports:
from com.canonical.certification import net_if_management
from com.canonical.plainbox import manifest
requires:
net_if_management.device == '{interface}' and net_if_management.master_mode_managed_by == 'NetworkManager'
net_if_management.device == '{interface}'
net_if_management.master_mode_managed_by == 'NetworkManager'
manifest.has_wifi_ap_host == 'True'
estimated_duration: 120.0
flags: preserve-locale also-after-suspend
Expand All @@ -68,7 +69,8 @@ imports:
from com.canonical.certification import net_if_management
from com.canonical.plainbox import manifest
requires:
net_if_management.device == '{interface}' and net_if_management.master_mode_managed_by == 'NetworkManager'
net_if_management.device == '{interface}'
net_if_management.master_mode_managed_by == 'NetworkManager'
manifest.has_wifi_ap_host == 'True'
estimated_duration: 120.0
flags: preserve-locale also-after-suspend
Expand Down

0 comments on commit fa794f9

Please sign in to comment.