Skip to content

Commit

Permalink
ENH: Change signature assertion (#13473)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxVanDeursen committed Mar 4, 2019
1 parent 79ace76 commit 3095c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/frame/test_alter_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ def test_rename_signature(self):
sig = inspect.signature(DataFrame.rename)
parameters = set(sig.parameters)
assert parameters == {"self", "mapper", "index", "columns", "axis",
"inplace", "copy", "level"}
"inplace", "copy", "level", "errors"}

@pytest.mark.skipif(PY2, reason="inspect.signature")
def test_reindex_signature(self):
Expand Down

0 comments on commit 3095c5f

Please sign in to comment.