Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariatta committed Oct 4, 2022
1 parent a9a94df commit 1489ffd
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions tests/system/test_aggregation_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,16 @@ def aggregation_query_client(datastore_client):
def ancestor_key(aggregation_query_client, in_emulator):

# In the emulator, re-populating the datastore is cheap.
# if in_emulator:
# print("in emulator")
print("add characters")
populate_datastore.add_characters(client=aggregation_query_client)
if in_emulator:
populate_datastore.add_characters(client=aggregation_query_client)

ancestor_key = aggregation_query_client.key(*populate_datastore.ANCESTOR)

yield ancestor_key

# In the emulator, destroy the query entities.
# if in_emulator:
clear_datastore.remove_all_entities(client=aggregation_query_client)
print("cleared")
if in_emulator:
clear_datastore.remove_all_entities(client=aggregation_query_client)


def _make_query(aggregation_query_client, ancestor_key):
Expand Down

0 comments on commit 1489ffd

Please sign in to comment.