Skip to content

Commit f701d6e

Browse files
committed
Fill in TODO
1 parent 0d9accd commit f701d6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _mock_database() -> Iterator[VuforiaDatabase]:
2929
@pytest.fixture()
3030
def vws_client(_mock_database: VuforiaDatabase) -> Iterator[VWS]:
3131
"""
32-
Yield a VWS client which connects to a mock.
32+
Yield a VWS client which connects to a mock database.
3333
"""
3434
yield VWS(
3535
server_access_key=_mock_database.server_access_key,
@@ -40,7 +40,7 @@ def vws_client(_mock_database: VuforiaDatabase) -> Iterator[VWS]:
4040
@pytest.fixture()
4141
def cloud_reco_client(_mock_database: VuforiaDatabase) -> Iterator[VWS]:
4242
"""
43-
TODO Docstring
43+
Yield a ``CloudRecoService`` client which connects to a mock database.
4444
"""
4545
yield CloudRecoService(
4646
client_access_key=_mock_database.client_access_key,

tests/test_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
TODO
2+
Tests for the ``CloudRecoService`` querying functionality.
33
"""
44

55
import io

0 commit comments

Comments
 (0)