Skip to content

Commit

Permalink
🔨 chore(pyproject.toml): remove loguru dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoskys committed Jan 18, 2024
1 parent fc1a323 commit d986bc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def test_show_available():


def test_srt2bcc():
with open("test.bcc", "r") as f:
with open("tests/test.bcc", "r") as f:
bcc_exp = f.read()
with open("test.srt", 'r') as file_io:
with open("tests/test.srt", 'r') as file_io:
test_result = get_method(method="srt2bcc")(content=file_io)
test_result = test_result.replace("\n", "")
bcc_exp = bcc_exp.replace("\n", "")
Expand Down

0 comments on commit d986bc0

Please sign in to comment.