Skip to content

Commit a1ee21d

Browse files
committed
rename supported variable to jspi_supported
1 parent ea819bc commit a1ee21d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_capi/test_emscripten.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
class EmscriptenAsyncInputDeviceTest(unittest.TestCase):
1212
def test_emscripten_async_input_device(self):
13-
supported = emscripten_set_up_async_input_device()
13+
jspi_supported = emscripten_set_up_async_input_device()
1414
p = Path("/dev/blah")
1515
self.addCleanup(p.unlink)
16-
if not supported:
16+
if not jspi_supported:
1717
with open(p, "r") as f:
1818
self.assertRaises(OSError, f.readline)
1919
return

0 commit comments

Comments
 (0)