Skip to content

Commit 768f00b

Browse files
author
Peter Hamfelt
committed
Uppdate test case
1 parent 92c781f commit 768f00b

File tree

2 files changed

+4
-44
lines changed

2 files changed

+4
-44
lines changed

tests/checkers/test_pandas/test_pandas_series_bool.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def test_series_bool_usage(self):
1212
node = astroid.extract_node(
1313
"""
1414
import pandas as pd
15-
series = pd.Series(data)
16-
series.bool() #@
15+
ser_customer = pd.Series(data)
16+
ser_customer.bool() #@
1717
"""
1818
)
1919
with self.assertAddsMessages(
@@ -30,8 +30,8 @@ def test_no_bool_usage(self):
3030
node = astroid.extract_node(
3131
"""
3232
import pandas as pd
33-
series = pd.Series(data)
34-
series.sum() #@
33+
ser_customer = pd.Series(data)
34+
ser_customer.sum() #@
3535
"""
3636
)
3737
with self.assertNoMessages():

tests/util/test_library_handler.py

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)