We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5118a6e commit b6251e7Copy full SHA for b6251e7
pandas/tests/base/test_constructors.py
@@ -80,15 +80,15 @@ def test_invalid_delegation(self):
80
81
msg = "You cannot access the property foo"
82
with pytest.raises(TypeError, match=msg):
83
- delegate.inaccesible
+ delegate.foox
84
85
msg = "The property foo cannot be set"
86
87
- delegate.inaccesible = 5
+ delegate.foox = 5
88
89
90
91
- delegate.inaccesible()
+ delegate.foox()
92
93
@pytest.mark.skipif(PYPY, reason="not relevant for PyPy")
94
def test_memory_usage(self):
0 commit comments