From 2f0e236718be97be1fb8aef375efb062b4f3531d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Arnauts?= Date: Thu, 25 Feb 2021 13:00:48 +0100 Subject: [PATCH] Update test --- .github/workflows/addon-check.yml | 2 +- tests/test_api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/addon-check.yml b/.github/workflows/addon-check.yml index c3eafd9..aa15f01 100644 --- a/.github/workflows/addon-check.yml +++ b/.github/workflows/addon-check.yml @@ -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 }} \ No newline at end of file diff --git a/tests/test_api.py b/tests/test_api.py index 1767a72..c850a15 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -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)