Skip to content

Commit

Permalink
test: add imports into test_collections systest
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Jul 9, 2020
1 parent 71737a6 commit beaefa5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/system/test_system.py
Expand Up @@ -68,8 +68,12 @@ def cleanup():
operation()


def test_collections(client):
def test_collections():
from google.cloud import firestore

client = firestore.Client()
collections = list(client.collections())

assert isinstance(collections, list)


Expand Down

0 comments on commit beaefa5

Please sign in to comment.