Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit cf3bef7

Browse files
committed
tests: Fix use of h2.settings
1 parent 88d4e67 commit cf3bef7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/test_hyper.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# -*- coding: utf-8 -*-
2-
import h2.settings
3-
42
from h2.frame_buffer import FrameBuffer
53
from h2.connection import ConnectionState
4+
from h2.settings import SettingCodes
65
from hyperframe.frame import (
76
Frame, DataFrame, RstStreamFrame, SettingsFrame, PushPromiseFrame,
87
WindowUpdateFrame, HeadersFrame, ContinuationFrame, GoAwayFrame,
@@ -766,7 +765,7 @@ def test_incrementing_window_after_close(self):
766765
# the default max frame size (16,384 bytes). That will, on the third
767766
# frame, trigger the processing to increment the flow control window,
768767
# which should then not happen.
769-
f = SettingsFrame(0, settings={h2.settings.INITIAL_WINDOW_SIZE: 100})
768+
f = SettingsFrame(0, settings={SettingCodes.INITIAL_WINDOW_SIZE: 100})
770769

771770
c = HTTP20Connection('www.google.com')
772771
c._sock = DummySocket()

0 commit comments

Comments
 (0)