summaryrefslogtreecommitdiff
path: root/tests/unit/components/test_readlinecommands.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/components/test_readlinecommands.py')
-rw-r--r--tests/unit/components/test_readlinecommands.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/unit/components/test_readlinecommands.py b/tests/unit/components/test_readlinecommands.py
index b3ca9c301..af815b075 100644
--- a/tests/unit/components/test_readlinecommands.py
+++ b/tests/unit/components/test_readlinecommands.py
@@ -279,15 +279,13 @@ def test_rl_unix_filename_rubout(lineedit, text, deleted, rest, method, args):
@pytest.mark.parametrize('os_sep, text, deleted, rest', [
- pytest.param('/', 'path|', 'path', '|', marks=fixme),
- ('/', 'path|', 'ath', 'p|'), # wrong
+ ('/', 'path|', 'path', '|'),
('/', '/path|', 'path', '/|'),
('/', '/path/sub|', 'sub', '/path/|'),
('/', '/path/trailing/|', 'trailing/', '/path/|'),
('/', '/test/path with spaces|', 'path with spaces', '/test/|'),
('/', r'/test/path\backslashes\eww|', r'path\backslashes\eww', '/test/|'),
- pytest.param('\\', 'path|', 'path', '|', marks=fixme),
- ('\\', 'path|', 'ath', 'p|'), # wrong
+ ('\\', 'path|', 'path', '|'),
('\\', r'C:\path|', 'path', r'C:\|'),
('\\', r'C:\path\sub|', 'sub', r'C:\path\|'),
('\\', r'C:\test\path with spaces|', 'path with spaces', r'C:\test\|'),