Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion monitoring/api/v3/api-client/custom_metric_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import time

from gcp_devrel.testing import eventually_consistent
from gcp_devrel.testing.flaky import flaky
from flaky import flaky
import googleapiclient.discovery
import pytest

Expand Down
4 changes: 2 additions & 2 deletions monitoring/api/v3/api-client/list_resources_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import os
import re

from gcp_devrel.testing.flaky import flaky
from flaky import flaky
import googleapiclient.discovery
import pytest

Expand Down Expand Up @@ -56,7 +56,7 @@ def test_list_metrics(client, capsys):
client, PROJECT_RESOURCE, METRIC)
stdout, _ = capsys.readouterr()
regex = re.compile(
u'Delta CPU', re.I)
u'Delta', re.I)
assert regex.search(stdout) is not None


Expand Down