Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tests/test_telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,9 +623,10 @@ def test_app_started_product_disabled(self):
), f"Product information was expected in app-started event, but was missing in {data['log_filename']}"

for product, details in payload["products"].items():
assert (
details.get("enabled") is False
), f"Product information expected to indicate {product} is disabled, but found enabled"
assert details.get("enabled") in [
False,
"false",
], f"Product information expected to indicate {product} is disabled, but found enabled"

if not data_found:
raise ValueError("No telemetry data to validate on")
Expand Down