Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

e2e: get_records now returns an iterator #165

Merged
merged 1 commit into from
Mar 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def main():

# 6. obtain the destination records and serialize canonically.

records = dest_client.get_records()
records = list(dest_client.get_records())
assert len(records) == expected, '%s != %s records' % (len(records), expected)
timestamp = collection_timestamp(dest_client)
serialized = canonical_json(records, timestamp)
Expand Down