From bb28bdc415ac548a73e84427fb98f7f507148d61 Mon Sep 17 00:00:00 2001 From: Matlink Date: Thu, 20 Sep 2018 17:35:50 +0200 Subject: [PATCH] maps.pro with angler --- tests/test_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 94b7317..70aaa4e 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -84,8 +84,8 @@ def test_another_device(device='hammerhead'): call("gplaycli -vd %s -dc %s" % (TESTAPK, device)) assert os.path.isfile("%s.apk" % TESTAPK) -def test_download_additional_files(apk='com.mapswithme.maps.pro'): - call("gplaycli -d %s -a" % apk) +def test_download_additional_files(apk='com.mapswithme.maps.pro', device='angler'): + call("gplaycli -d %s -a -dc %s" % (apk, device)) assert os.path.isfile("%s.apk" % apk) files = [f for f in os.listdir() if os.path.isfile(f)] assert any([f.endswith('%s.obb' % apk) and f.startswith('main') for f in files])