mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-12 11:17:01 +00:00
12 lines
313 B
Python
12 lines
313 B
Python
import json
|
|
|
|
from datahub.cli.cli_utils import get_aspects_for_entity
|
|
|
|
|
|
def test_no_clientID():
|
|
client_id_urn = "urn:li:telemetry:clientId"
|
|
aspect = ["telemetryClientId"]
|
|
|
|
res_data = json.dumps(get_aspects_for_entity(entity_urn=client_id_urn, aspects=aspect, typed=False))
|
|
assert res_data == "{}"
|