Update test

This commit is contained in:
Michaël Arnauts 2021-02-25 13:00:48 +01:00
parent 88e1bbc4d6
commit 2f0e236718
2 changed files with 2 additions and 2 deletions

View File

@ -23,5 +23,5 @@ jobs:
uses: xbmc/action-kodi-addon-checker@v1.2
with:
kodi-version: ${{ matrix.kodi-version }}
rewrite-for-matrix: true
rewrite-for-matrix: ${{ matrix.kodi-version == 'matrix' }}
addon-id: ${{ github.event.repository.name }}

View File

@ -75,7 +75,7 @@ class TestApi(unittest.TestCase):
@unittest.skipUnless(kodiutils.get_setting('username') and kodiutils.get_setting('password'), 'Skipping since we have no credentials.')
def test_get_drm_stream(self):
resolved_stream = self._api.get_stream_by_uuid('a545bb4f-0f4c-4588-92a2-5086041c0e08') # Hawaii Five-O 8x12
resolved_stream = self._api.get_stream_by_uuid('f6d2f756-e0bf-4caa-822c-7ff0d10cc8dd') # Hawaii Five-O 8x25
self.assertIsInstance(resolved_stream, ResolvedStream)