Skip to content

Commit

Permalink
Disable failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
slozier committed Apr 26, 2020
1 parent b633809 commit 60ae8bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Tests/test_strformat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys
import unittest

from iptest import IronPythonTestCase, is_cli, is_cpython, run_test, skipUnlessIronPython
from iptest import IronPythonTestCase, is_cli, is_cpython, is_netcoreapp21, run_test, skipUnlessIronPython

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

if is_netcoreapp21: return # https://github.com/IronLanguages/ironpython3/issues/751

# check locale specific formatting
import _locale
try:
Expand Down

0 comments on commit 60ae8bb

Please sign in to comment.