We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92c781f commit 768f00bCopy full SHA for 768f00b
tests/checkers/test_pandas/test_pandas_series_bool.py
@@ -12,8 +12,8 @@ def test_series_bool_usage(self):
12
node = astroid.extract_node(
13
"""
14
import pandas as pd
15
- series = pd.Series(data)
16
- series.bool() #@
+ ser_customer = pd.Series(data)
+ ser_customer.bool() #@
17
18
)
19
with self.assertAddsMessages(
@@ -30,8 +30,8 @@ def test_no_bool_usage(self):
30
31
32
33
34
- series.sum() #@
+ ser_customer.sum() #@
35
36
37
with self.assertNoMessages():
tests/util/test_library_handler.py
0 commit comments