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 5784380 commit 585ef31Copy full SHA for 585ef31
pandas/tools/tests/test_hashing.py
@@ -77,6 +77,11 @@ def test_hash_pandas_object(self):
77
self.check_equal(obj)
78
self.check_not_equal_with_index(obj)
79
80
+ def test_hash_pandas_object2(self):
81
+ for name, s in self.df.iteritems():
82
+ self.check_equal(s)
83
+ self.check_not_equal_with_index(s)
84
+
85
def test_hash_pandas_empty_object(self):
86
for obj in [Series([], dtype='float64'),
87
Series([], dtype='object'),
0 commit comments