Skip to content

Commit b80a341

Browse files
committed
adjust thrdscan
1 parent d70d882 commit b80a341

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/plugins/windows/windows.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,10 @@ def test_windows_specific_thrdscan(self, volatility, python):
250250
"windows.thrdscan.ThrdScan", image, volatility, python
251251
)
252252
assert rc == 0
253-
assert out.find(b"\t4\t8") != -1
254-
assert out.find(b"\t4\t12") != -1
255-
assert out.find(b"\t4\t16") != -1
253+
assert out.count(b"\n") > 700
254+
assert out.find(b"\t1812\t2768\t0x7c810856") != -1
255+
assert out.find(b"\t840\t2964\t0x7c810856") != -1
256+
assert out.find(b"\t2536\t2552\t0x7c810856") != -1
256257

257258

258259
class TestWindowsPrivileges:

0 commit comments

Comments
 (0)