Skip to content

Commit cd47c4d

Browse files
committed
more clean-up
1 parent 7a1ee91 commit cd47c4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/base/test_constructors.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ def constructor(request):
4444
class TestPandasDelegate:
4545
class Delegator:
4646
_properties = ["prop"]
47-
_methods = ["bar"]
47+
_methods = ["test_method"]
4848

4949
def _set_prop(self, value):
5050
self.prop = value
5151

5252
def _get_prop(self):
5353
return self.prop
5454

55-
value = property(_get_prop, _set_prop, doc="foo property")
55+
prop = property(_get_prop, _set_prop, doc="foo property")
5656

5757
def test_method(self, *args, **kwargs):
5858
"""a test bar method"""

0 commit comments

Comments
 (0)