1
0
forked from VimPlug/jedi

Remove the skip_python2 fixture

This commit is contained in:
Dave Halter
2020-07-02 02:52:02 +02:00
parent f4e537fd72
commit 188fdcd34f
9 changed files with 9 additions and 27 deletions

View File

@@ -26,7 +26,7 @@ def test_f_strings(Script, environment):
assert _infer_literal(Script, 'rF"{asdf} "', is_fstring=True) == ''
def test_rb_strings(Script, environment, skip_python2):
def test_rb_strings(Script, environment):
assert _infer_literal(Script, 'x = br"asdf"; x') == b'asdf'
assert _infer_literal(Script, 'x = rb"asdf"; x') == b'asdf'