Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fixup unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Jul 13, 2018
1 parent 5f263b6 commit bc832f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/util/test_stream_change_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ def test_get_entities_changed(self):
)

# Query all the entries mid-way through the stream, but include one
# that doesn't exist in it. We should get back the one that doesn't
# exist, too.
# that doesn't exist in it. We shouldn't get back the one that doesn't
# exist.
self.assertEqual(
cache.get_entities_changed(
[
Expand All @@ -153,7 +153,7 @@ def test_get_entities_changed(self):
],
stream_pos=2,
),
set(["bar@baz.net", "user@elsewhere.org", "not@here.website"]),
set(["bar@baz.net", "user@elsewhere.org"]),
)

# Query all the entries, but before the first known point. We will get
Expand Down

0 comments on commit bc832f8

Please sign in to comment.