From 36da9f9eb9e9cb74f12f9af0f5edc82ac45f6b5f Mon Sep 17 00:00:00 2001 From: ValekoZ Date: Sat, 8 Jun 2024 16:40:06 +0200 Subject: [PATCH] Fix tests --- tests/commands/vmmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/vmmap.py b/tests/commands/vmmap.py index 1ac0c5a2e..b79c3ecff 100644 --- a/tests/commands/vmmap.py +++ b/tests/commands/vmmap.py @@ -23,4 +23,4 @@ def test_cmd_vmmap(self): self.assertGreater(len(res.splitlines()), 1) res = gdb.execute("vmmap $pc", to_string=True) - self.assertEqual(len(res.splitlines()), 2) + self.assertEqual(len(res.splitlines()), 8)