Skip to content

Commit

Permalink
✅ fix tests sc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Jezza34000 committed Jan 29, 2025
1 parent 55b6ccc commit 7d08668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ async def test_get_fpath_failed(self):
file_name = "test_video.mp4"
expected_path = self.download_path / "123/test_video.mp4"
result = await self.dl_decrypt_media.get_fpath(file_name)
self.assertFalse(result == expected_path)
self.assertNotEqual(result, expected_path)


if __name__ == "__main__":
Expand Down

0 comments on commit 7d08668

Please sign in to comment.