Skip to content

Commit fe835ba

Browse files
committed
Fix clang-format issues.
1 parent e3a8867 commit fe835ba

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lldb/test/API/commands/frame/var-dil/basics/PointerDereference/TestFrameVarDILPointerDereference.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,12 @@ def test_frame_var(self):
3737
pp_void0_2_got = self.expect_var_path("&pp_void0[2]", type="void **")
3838
# Initialized in C++ code to point to the same value
3939
pp_void0_2_exp = self.expect_var_path("pp_void0_2", type="void **")
40-
self.assertEqual(pp_void0_2_got.GetValueAsAddress(),
41-
pp_void0_2_exp.GetValueAsAddress())
40+
self.assertEqual(
41+
pp_void0_2_got.GetValueAsAddress(), pp_void0_2_exp.GetValueAsAddress()
42+
)
4243
pp_int0_2stars_got = self.expect_var_path("&**pp_int0", type="int *")
4344
pp_int0_2stars_exp = self.expect_var_path("pp_int0_2stars", type="int *")
44-
self.assertEqual(pp_int0_2stars_got.GetValueAsAddress(),
45-
pp_int0_2stars_exp.GetValueAsAddress())
45+
self.assertEqual(
46+
pp_int0_2stars_got.GetValueAsAddress(),
47+
pp_int0_2stars_exp.GetValueAsAddress(),
48+
)

0 commit comments

Comments
 (0)