Skip to content

Commit 60ae8bb

Browse files
committed
Disable failing test
1 parent b633809 commit 60ae8bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Tests/test_strformat.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66
import unittest
77

8-
from iptest import IronPythonTestCase, is_cli, is_cpython, run_test, skipUnlessIronPython
8+
from iptest import IronPythonTestCase, is_cli, is_cpython, is_netcoreapp21, run_test, skipUnlessIronPython
99

1010
allChars = ''
1111
for y in [chr(x) for x in xrange(256) if chr(x) != '[' and chr(x) != '.']:
@@ -525,6 +525,8 @@ def test_float___format__(self):
525525
for value, spec, result in tests:
526526
self.assertEqual(value.__format__(spec), result)
527527

528+
if is_netcoreapp21: return # https://github.com/IronLanguages/ironpython3/issues/751
529+
528530
# check locale specific formatting
529531
import _locale
530532
try:

0 commit comments

Comments
 (0)