10000
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 0cf9d4f commit efe65f1Copy full SHA for efe65f1
monitoring/api/v3/list_resources_test.py
@@ -37,7 +37,7 @@ def test_list_monitored_resources(cloud_config, capsys):
37
client, PROJECT_RESOURCE)
38
stdout, _ = capsys.readouterr()
39
regex = re.compile(
40
- 'An application running')
+ 'An application running', re.I)
41
assert regex.search(stdout) is not None
42
43
@@ -49,7 +49,7 @@ def test_list_metrics(cloud_config, capsys):
49
client, PROJECT_RESOURCE, METRIC)
50
51
52
- u'Delta CPU usage time')
+ u'Delta CPU', re.I)
53
54
55
@@ -60,5 +60,5 @@ def test_list_timeseries(cloud_config, capsys):
60
list_resources.list_timeseries(
61
62
63
- regex = re.compile(u'list_timeseries response:\n')
+ regex = re.compile(u'list_timeseries response:\n', re.I)
64
0 commit comments