diff --git a/tests/integration/chunkstore/test_chunkstore.py b/tests/integration/chunkstore/test_chunkstore.py index 41a4394c..c0381c44 100644 --- a/tests/integration/chunkstore/test_chunkstore.py +++ b/tests/integration/chunkstore/test_chunkstore.py @@ -465,7 +465,7 @@ def helper(chunkstore_lib, chunk_size, name, df, append): chunkstore_lib.update(name, append) - if chunk_size is not 'A': + if chunk_size != 'A': assert_frame_equal_(chunkstore_lib.read(name), pd.concat([df, append])) else: # chunksize is the entire DF, so we'll overwrite the whole thing