We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea819bc commit a1ee21dCopy full SHA for a1ee21d
1 file changed
Lib/test/test_capi/test_emscripten.py
@@ -10,10 +10,10 @@
10
11
class EmscriptenAsyncInputDeviceTest(unittest.TestCase):
12
def test_emscripten_async_input_device(self):
13
- supported = emscripten_set_up_async_input_device()
+ jspi_supported = emscripten_set_up_async_input_device()
14
p = Path("/dev/blah")
15
self.addCleanup(p.unlink)
16
- if not supported:
+ if not jspi_supported:
17
with open(p, "r") as f:
18
self.assertRaises(OSError, f.readline)
19
return
0 commit comments