Skip to content

Commit 4caba8c

Browse files
committed
Enable test_stdconsole on .NET Core
1 parent d733047 commit 4caba8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/test_stdconsole.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sys
88
import unittest
99

10-
from iptest import IronPythonTestCase, is_cli, is_netcoreapp, is_posix, run_test, skipUnlessIronPython
10+
from iptest import IronPythonTestCase, is_cli, is_netcoreapp21, is_posix, run_test, skipUnlessIronPython
1111

1212
if is_cli:
1313
import clr
@@ -36,7 +36,7 @@ def __exit__(self, *args):
3636
from System import Environment
3737
Environment.SetEnvironmentVariable(self._variable, self._oldval)
3838

39-
@unittest.skipIf(is_netcoreapp, "TODO: figure out")
39+
@unittest.skipIf(is_netcoreapp21, "TODO: figure out")
4040
@unittest.skipIf(is_posix, 'Relies on batchfiles')
4141
class StdConsoleTest(IronPythonTestCase):
4242
"""Test that IronPython console behaves as expected (command line argument processing etc.)."""

0 commit comments

Comments
 (0)