Skip to content

Commit

Permalink
Replace append with concat
Browse files Browse the repository at this point in the history
  • Loading branch information
sdfordham committed May 22, 2024
1 parent 5b705c0 commit 24fb396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dataprep.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def test_init_multiple_rows(self):
}

self.assertRaises(
ValueError, Dataprep, foo=self.foo.append(self.foo.iloc[0]), **kwargs
ValueError, Dataprep, foo=pd.concat([self.foo, self.foo.iloc[0:1]], axis=0), **kwargs
)

def test_init_arg_treatment_identifier(self):
Expand Down

0 comments on commit 24fb396

Please sign in to comment.