Skip to content

Commit 180c232

Browse files
author
Michael Erickson
committed
Another fixed typo
1 parent cf024fb commit 180c232

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swat/tests/cas/test_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -883,8 +883,8 @@ def test_drop_duplicates(self):
883883

884884
# drop duplicates for multi-element subset
885885
tbl_dropped_multi = tbl.drop_duplicates(casout={'replace': True, 'name':'drop-test-2'},
886-
subset=['Country', 'Type'])
887-
df_dropped_multi = df.drop_duplicates(subset=['Country', 'Type'])
886+
subset=['Origin', 'Type'])
887+
df_dropped_multi = df.drop_duplicates(subset=['Origin', 'Type'])
888888

889889
# Equivalent to pandas in size
890890
self.assertEquals(len(tbl_dropped_multi), len(df_dropped_multi))

0 commit comments

Comments
 (0)