Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixed pylint error
  • Loading branch information
dashdanw committed Jul 27, 2020
commit 75ae37587700bdc68db5b3660312eaa3deeb90ad
3 changes: 2 additions & 1 deletion test/test_hyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,8 @@ def test_incrementing_window_after_close(self):
# the default max frame size (16,384 bytes). That will, on the third
# frame, trigger the processing to increment the flow control window,
# which should then not happen.
f = SettingsFrame(0, settings={h2.settings.SettingCodes.INITIAL_WINDOW_SIZE: 100})
s = {h2.settings.SettingCodes.INITIAL_WINDOW_SIZE: 100}
f = SettingsFrame(0, settings=s)

c = HTTP20Connection('www.google.com')
c._sock = DummySocket()
Expand Down