@@ -83,30 +83,40 @@ def test_memory_find(self):
8383 # Expression results with unsupported result types.
8484 self .expect (
8585 'memory find -e "ThreeBytes{}" `&bytedata[0]` `&bytedata[2]`' ,
86- substrs = ["Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported" ],
86+ substrs = [
87+ "Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported"
88+ ],
8789 error = True ,
8890 )
8991
9092 self .expect (
9193 'memory find -e "FiveBytes{}" `&bytedata[0]` `&bytedata[2]`' ,
92- substrs = ["Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported" ],
94+ substrs = [
95+ "Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported"
96+ ],
9397 error = True ,
9498 )
9599
96100 self .expect (
97101 'memory find -e "SixBytes{}" `&bytedata[0]` `&bytedata[2]`' ,
98- substrs = ["Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported" ],
102+ substrs = [
103+ "Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported"
104+ ],
99105 error = True ,
100106 )
101107
102108 self .expect (
103109 'memory find -e "SevenBytes{}" `&bytedata[0]` `&bytedata[2]`' ,
104- substrs = ["Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported" ],
110+ substrs = [
111+ "Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported"
112+ ],
105113 error = True ,
106114 )
107115
108116 self .expect (
109117 'memory find -e "NineBytes{}" `&bytedata[0]` `&bytedata[2]`' ,
110- substrs = ["Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported" ],
118+ substrs = [
119+ "Only expressions resulting in 1, 2, 4, or 8-byte-sized values are supported"
120+ ],
111121 error = True ,
112122 )
0 commit comments