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

Commit 6bd4643

Browse files
committed
fixed unit tests
1 parent 2ffe530 commit 6bd4643

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/unit/test_database.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3560,11 +3560,14 @@ def _next_nth_request(self):
35603560

35613561

35623562
class _Instance(object):
3563-
def __init__(self, name, client=_Client(), emulator_host=None):
3563+
def __init__(
3564+
self, name, client=_Client(), emulator_host=None, experimental_host=None
3565+
):
35643566
self.name = name
35653567
self.instance_id = name.rsplit("/", 1)[1]
35663568
self._client = client
35673569
self.emulator_host = emulator_host
3570+
self.experimental_host = experimental_host
35683571

35693572

35703573
class _Backup(object):

0 commit comments

Comments
 (0)