We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caaa61f commit 81a2171Copy full SHA for 81a2171
tests/functional/test_metrics.py
@@ -321,7 +321,7 @@ def test_schema_no_metrics(service, namespace):
321
322
def test_exceed_number_of_dimensions(metric, namespace):
323
# GIVEN we have more dimensions than CloudWatch supports (N+1)
324
- dimensions = [{"name": f"test_{i}", "value": "test"} for i in range(MAX_DIMENSIONS + 2)]
+ dimensions = [{"name": f"test_{i}", "value": "test"} for i in range(MAX_DIMENSIONS + 1)]
325
326
# WHEN we attempt to serialize them into a valid EMF object
327
# THEN it should fail validation and raise SchemaValidationError
0 commit comments