KnownApks: appid is no longer needed at all, remove it.

This commit is contained in:
Hans-Christoph Steiner 2024-10-30 14:01:54 +01:00
parent 5032207da0
commit 173c1d67f4
4 changed files with 17 additions and 20 deletions

View file

@ -2048,12 +2048,10 @@ class TestScanRepoForIpas(unittest.TestCase):
knownapks.recordapk.call_count = 2
self.assertTrue(
unittest.mock.call('abc.Def_123.ipa', 'abc')
in knownapks.recordapk.mock_calls
unittest.mock.call('abc.Def_123.ipa') in knownapks.recordapk.mock_calls
)
self.assertTrue(
unittest.mock.call('xyz.XXX_123.ipa', 'xyz')
in knownapks.recordapk.mock_calls
unittest.mock.call('xyz.XXX_123.ipa') in knownapks.recordapk.mock_calls
)