diff options
author | Hood Chatham <roberthoodchatham@gmail.com> | 2024-12-04 00:06:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 00:06:20 (GMT) |
commit | 0f9107817022f0defac157e3795a4093a32ea320 (patch) | |
tree | c1fb1d2a03228bbe842533a26176071d2a78fb83 /Lib/test/test_support.py | |
parent | 12397a5781664bf43da98454db07cdfdec3ab815 (diff) | |
download | cpython-0f9107817022f0defac157e3795a4093a32ea320.zip cpython-0f9107817022f0defac157e3795a4093a32ea320.tar.gz cpython-0f9107817022f0defac157e3795a4093a32ea320.tar.bz2 |
gh-127146: Resolve some minor problems in Emscripten tests (#127565)
Adjusts some Emscripten test exclusions regarding strftime, fma, and stack depth.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 9a3cf14..635ae03 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -578,7 +578,7 @@ class TestSupport(unittest.TestCase): 'Warning -- a\nWarning -- b\n') def test_has_strftime_extensions(self): - if support.is_emscripten or sys.platform == "win32": + if sys.platform == "win32": self.assertFalse(support.has_strftime_extensions) else: self.assertTrue(support.has_strftime_extensions) |