Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit ec4e847

Browse files
committed
fixed import
1 parent aec2577 commit ec4e847

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/data/_metrics/test_data_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ def test_start_attempt_with_backoff_generator(self):
213213
If operation has a backoff generator, it should be used to attach backoff
214214
times to attempts
215215
"""
216-
from google.cloud.bigtable.data._helpers import BackoffGenerator
216+
from google.cloud.bigtable.data._helpers import TrackedBackoffGenerator
217217

218-
generator = BackoffGenerator()
218+
generator = TrackedBackoffGenerator()
219219
# pre-seed generator with exepcted values
220220
generator.history = list(range(10))
221221
metric = self._make_one(mock.Mock(), backoff_generator=generator)

0 commit comments

Comments
 (0)