def test_user_id_update_benchmark_link(self, get_uuid): response = update_benchmark_link(get_uuid) a = json.loads(response.text)['data']['link']['createUserId'] assert a == token.user_id
def test_location_id_update_benchmark_link(self, get_uuid): response = update_benchmark_link(get_uuid) a = json.loads(response.text)['data']['link']['benchmarkLocationId'] assert a == benchmarkLocationId
def test_data_update_benchmark_link(self, get_uuid): response = update_benchmark_link(get_uuid) a = json.loads(response.text)['data']['link']['data'] assert a == data_update
def test_update_benchmark_link_status(self, get_uuid): response = update_benchmark_link(get_uuid) assert response.status_code == 200