Skip to content

Commit

Permalink
maps.pro with angler
Browse files Browse the repository at this point in the history
  • Loading branch information
matlink committed Sep 20, 2018
1 parent f070442 commit bb28bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit bb28bdc

Please sign in to comment.