Skip to content

Commit 6dc17cb

Browse files
committed
chore: test str
1 parent b36b4a1 commit 6dc17cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/tests/functional/test_metrics.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def lambda_handler(evt, context):
307307

308308
def test_all_metric_units_string(metric, dimension, namespace):
309309

310-
# "Seconds", "BytesPerSecond", etc.
310+
# metric unit as MetricUnit key e.g. "Seconds", "BytesPerSecond"
311311
for unit in MetricUnit:
312312
metric["unit"] = unit.name
313313
with single_metric(**metric) as my_metric:
@@ -322,7 +322,7 @@ def test_all_metric_units_string(metric, dimension, namespace):
322322

323323
all_metric_units = [unit.value for unit in MetricUnit]
324324

325-
# "Seconds", "Bytes/Second", etc.
325+
# metric unit as MetricUnit value e.g. "Seconds", "Bytes/Second"
326326
for unit in all_metric_units:
327327
metric["unit"] = unit
328328
with single_metric(**metric) as my_metric:

0 commit comments

Comments
 (0)