From b80a34110edb57353c51a413bcd032b58e1fdd47 Mon Sep 17 00:00:00 2001 From: Abyss Watcher Date: Wed, 26 Mar 2025 14:41:05 +0100 Subject: [PATCH] adjust thrdscan --- test/plugins/windows/windows.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/plugins/windows/windows.py b/test/plugins/windows/windows.py index 3ad9dc70d..f494c5945 100644 --- a/test/plugins/windows/windows.py +++ b/test/plugins/windows/windows.py @@ -250,9 +250,10 @@ class TestWindowsThrdscan: "windows.thrdscan.ThrdScan", image, volatility, python ) assert rc == 0 - assert out.find(b"\t4\t8") != -1 - assert out.find(b"\t4\t12") != -1 - assert out.find(b"\t4\t16") != -1 + assert out.count(b"\n") > 700 + assert out.find(b"\t1812\t2768\t0x7c810856") != -1 + assert out.find(b"\t840\t2964\t0x7c810856") != -1 + assert out.find(b"\t2536\t2552\t0x7c810856") != -1 class TestWindowsPrivileges: