Skip to content

Commit 4ce58f2

Browse files
committed
uglification
1 parent dfcd21a commit 4ce58f2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_read_registers_using_g_packets(self):
140140
# early on to see if the packet is supported. So we can't say that there
141141
# will be NO p packets.
142142
# But there certainly should be no p packets after the g packet.
143-
143+
144144
self.read_registers(process)
145145
print(f"\nPACKET LOG:\n{self.server.responder.packetLog}\n")
146146
g_pos = 0
@@ -157,7 +157,14 @@ def test_read_registers_using_g_packets(self):
157157

158158
# Make sure there aren't any `p` packets after the `g` packet:
159159
self.assertEqual(
160-
0, len([p for p in self.server.responder.packetLog[g_pos:] if p.startswith("p")])
160+
0,
161+
len(
162+
[
163+
p
164+
for p in self.server.responder.packetLog[g_pos:]
165+
if p.startswith("p")
166+
]
167+
),
161168
)
162169

163170
def test_read_registers_using_p_packets(self):

0 commit comments

Comments
 (0)