Skip to content

Commit 2c31b44

Browse files
committed
Fix format
1 parent 8377bc3 commit 2c31b44

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

lldb/test/API/macosx/simulator/TestSimulatorPlatform.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ def check_debugserver(self, log, expected_platform, expected_version):
3939
if expected_version:
4040
self.assertEqual(aout_info["min_version_os_sdk"], expected_version)
4141

42-
def run_with(self, arch, os, vers, env, expected_load_command, expected_platform=None):
42+
def run_with(
43+
self, arch, os, vers, env, expected_load_command, expected_platform=None
44+
):
4345
env_list = [env] if env else []
4446
triple = "-".join([arch, "apple", os + vers] + env_list)
4547
sdk = lldbutil.get_xcode_sdk(os, env)
@@ -79,7 +81,12 @@ def run_with(self, arch, os, vers, env, expected_load_command, expected_platform
7981
# The current platform should be expected
8082
self.expect("platform status", patterns=[r"Platform: " + expected_platform])
8183
# Should be able to list processes on the current platform
82-
self.expect("platform process list", patterns=[r"\d+ matching processes were found on \"%s\"" % expected_platform])
84+
self.expect(
85+
"platform process list",
86+
patterns=[
87+
r"\d+ matching processes were found on \"%s\"" % expected_platform
88+
],
89+
)
8390
self.expect("image list -b -t", patterns=[r"a\.out " + triple_re])
8491
self.check_debugserver(log, os + env, vers)
8592

0 commit comments

Comments
 (0)