Skip to content
Snippets Groups Projects
Commit 8b0d2ca8 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

minor chenges tests

parent f9513bf2
No related branches found
No related tags found
1 merge request!2Develop
......@@ -52,7 +52,7 @@ def test__getitem_single_loc_fail(idxer):
a = d1.loc[:, idxer]
@pytest.mark.parametrize('idxer', [-5, 99, 'a', '2', ])
@pytest.mark.parametrize('idxer', [-5, 99, 'a', '2', None, ])
def test__getitem_single_iloc_fail(idxer):
with pytest.raises(KeyError):
a = d1.iloc[:, idxer]
......
......@@ -138,7 +138,7 @@ def test__op2__(left, right, op):
assert res == exp
except ZeroDivisionError:
pytest.mark.skip('ZeroDivisionError')
pytest.skip('ZeroDivisionError')
@pytest.mark.parametrize('data', _diosmatr(ALL))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment