Skip to content

Commit

Permalink
fixes test (order is irrelevant)
Browse files Browse the repository at this point in the history
  • Loading branch information
huettenhain committed Nov 21, 2024
1 parent fc8fa0c commit a57430a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/units/formats/exe/test_vstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ def test_write_skip_regression_01(self):
'018B45F83B45F47CC38B45FCC9'
)
unit = self.load(patch_range=slice(10, 50), arch='x64')
test = data | unit | []
self.assertListEqual(test, [
test = data | unit | {bytes}
self.assertSetEqual(test, {
h('2A233337285B4041462B202E20205F59424033212D3D37575D5B4335392C3E2A40555F5A7073756D6C6F72656D69707300'),
h('6C6F72656D697073756D6C6F72656D697073756D6C6F72656D697073756D6C6F72656D697073756D6C6F72656D69707300'),
])
})

def test_shellcode_example(self):
data = self.download_sample('e850f3849ea82980cf23844ad3caadf73856b2d5b0c4179847d82ce4016e80ee')
Expand Down

0 comments on commit a57430a

Please sign in to comment.