Skip to content

Commit

Permalink
fix test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
d-chambers committed Dec 25, 2024
1 parent eb7acdc commit b9137ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils/test_patch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def test_path_column(self, random_directory_spool):
expected = pd.Series([x[-1].split(".")[0] for x in df["path"].str.split("/")])
assert np.all(names == expected)

def tet_path_column_leave_extension(self, random_directory_spool):
def test_path_column_leave_extension(self, random_directory_spool):
"""If extension is false the file extension should remain."""
names = get_patch_names(random_directory_spool, strip_extension=False)
assert "." in names.iloc[0]

0 comments on commit b9137ac

Please sign in to comment.