File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
lldb/test/API/commands/frame/var-dil/basics/PointerDereference Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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+ )
You can’t perform that action at this time.
0 commit comments