diff --git a/tests/device_test.py b/tests/device_test.py index 9b6742c0..564b20fa 100644 --- a/tests/device_test.py +++ b/tests/device_test.py @@ -566,7 +566,8 @@ def test_create_device_dockercompose_success(self, mock_request): 'runtime_docker': True, 'ros_distro': 'melodic', 'rosbag_mount_path': 'test/path' - } + }, + 'labels': {} } expected_create_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/auth-keys/?download_type=script' expected_get_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/devices/test-device-id' @@ -610,7 +611,8 @@ def test_create_device_preinstalled_success(self, mock_request): 'runtime_preinstalled': True, 'ros_distro': 'melodic', 'ros_workspace': 'test/path' - } + }, + 'labels': {} } expected_create_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/auth-keys/?download_type=script' expected_get_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/devices/test-device-id' @@ -655,7 +657,8 @@ def test_create_device_dockercompose_success(self, mock_request): 'runtime_preinstalled': True, 'ros_distro': 'melodic', 'rosbag_mount_path': 'test/path' - } + }, + 'labels': {} } expected_create_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/auth-keys/?download_type=script' expected_get_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/devices/test-device-id' @@ -893,7 +896,8 @@ def test_create_device_python3_dockercompose_success(self, mock_request): 'runtime_docker': True, 'ros_distro': 'melodic', 'rosbag_mount_path': 'test/path' - } + }, + 'labels': {} } expected_create_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/auth-keys/?download_type=script' expected_get_device_url = 'https://gaapiserver.apps.okd4v2.prod.rapyuta.io/api/device-manager/v0/devices/test-device-id'