From e5ac978c5994323e881d72a115348b7dad7ca8e8 Mon Sep 17 00:00:00 2001 From: erev0s Date: Fri, 1 Nov 2024 16:26:04 +0200 Subject: [PATCH] update path for test --- tests/test_axml.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_axml.py b/tests/test_axml.py index d70cce4d..3c08a305 100644 --- a/tests/test_axml.py +++ b/tests/test_axml.py @@ -400,8 +400,7 @@ class AXMLTest(unittest.TestCase): """ Assert that app name from compact resource is read correctly """ - filename = "data/AXML/compact-entry.apk" - a = APK(filename) + a = APK(os.path.join(test_dir, "data/AXML/compact-entry.apk")) self.assertEqual(a.get_app_name(), "erev0s.com-CompactEntry")