Fixes #1608
This commit is contained in:
parent
ba2ea8e1b3
commit
1a0a951b06
3 changed files with 9 additions and 3 deletions
|
|
@ -173,6 +173,7 @@ def test_get_metric_statistics():
|
|||
dict(
|
||||
MetricName='metric',
|
||||
Value=1.5,
|
||||
Timestamp=utc_now
|
||||
)
|
||||
]
|
||||
)
|
||||
|
|
@ -180,7 +181,7 @@ def test_get_metric_statistics():
|
|||
stats = conn.get_metric_statistics(
|
||||
Namespace='tester',
|
||||
MetricName='metric',
|
||||
StartTime=utc_now,
|
||||
StartTime=utc_now - timedelta(seconds=60),
|
||||
EndTime=utc_now + timedelta(seconds=60),
|
||||
Period=60,
|
||||
Statistics=['SampleCount', 'Sum']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue