Skip to content

Commit b8a3fb0

Browse files
committed
Fix linter errors in test_pandas
1 parent ac62992 commit b8a3fb0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/test_pandas.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ def testTabletoPandas(self):
142142
df = to_python(table)
143143
# Table types cannot be the same here, unless we want to cast.
144144
# assert_same_table(table, df)
145-
assert type(df["header1"][0]) == float
146-
assert type(df["header2"][0]) == int
147-
assert type(df["header3"][0]) == bool
148-
assert type(df["header4"][0]) == str
149-
assert type(df["header5"][0]) == float
145+
assert type(df["header1"][0]) is float
146+
assert type(df["header2"][0]) is int
147+
assert type(df["header3"][0]) is bool
148+
assert type(df["header4"][0]) is str
149+
assert type(df["header5"][0]) is float
150150

151151
def _fill_table(self, table, ndarr, ctor):
152152
for i in range(table.getColumnCount()):

0 commit comments

Comments
 (0)