diff --git a/.github/actions/lbox-matrix/index.js b/.github/actions/lbox-matrix/index.js index 58e04c678..5dd4197e7 100644 --- a/.github/actions/lbox-matrix/index.js +++ b/.github/actions/lbox-matrix/index.js @@ -26811,6 +26811,7 @@ const core = __nccwpck_require__(8611); try { const files = JSON.parse(core.getInput('files-changed')); const startingMatrix = [ + // To be updated with the new API keys { "python-version": "3.9", "api-key": "STAGING_LABELBOX_API_KEY_3", diff --git a/libs/labelbox/tests/integration/test_api_keys.py b/libs/labelbox/tests/integration/test_api_keys.py index dba8c8e77..77be1881c 100644 --- a/libs/labelbox/tests/integration/test_api_keys.py +++ b/libs/labelbox/tests/integration/test_api_keys.py @@ -55,7 +55,7 @@ def test_create_api_key_failed(client): client.create_api_key( name=f"Test Key {uuid.uuid4()}", user=client.get_user().email, - role="LABELER", # This string should fail since role strings are case sensitive + role="LABELER", # This string should fail because role strings are case sensitive validity=5, time_unit=TimeUnit.MINUTE, )