Skip to content

Commit

Permalink
Update test based on flake output.
Browse files Browse the repository at this point in the history
  • Loading branch information
szicari-streambit committed Dec 14, 2024
1 parent 45db5bb commit 12266d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/tables/test_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def wset(self, *, iwtable, event):

@pytest.fixture()
def data(self, *, freeze_time, iwtable):
iwtable.key_index_table = {k: 1 for k in self.TABLE_DATA}
iwtable.key_index_table = dict.fromkeys(self.TABLE_DATA, 1)
iwtable.table._data = {}
for w in iwtable.table._window_ranges(freeze_time.time):
iwtable.table._data.update({(k, w): v for k, v in self.TABLE_DATA.items()})
Expand Down

0 comments on commit 12266d2

Please sign in to comment.