Skip to content

Commit

Permalink
Merge pull request #107 from Dog-Face-Development/deepsource-transfor…
Browse files Browse the repository at this point in the history
…m-df8d1404

style: format code with Black
  • Loading branch information
willtheorangeguy authored Nov 11, 2023
2 parents 1a44835 + adb6b03 commit 3ccf8a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_send.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Get out of the test directory
import os
import sys

current_dir = os.path.dirname(os.path.abspath(__file__))
parent_dir = os.path.dirname(current_dir)
sys.path.append(os.path.join(parent_dir, 'send'))
sys.path.append(os.path.join(parent_dir, "send"))

# Import send file to test
import send
Expand All @@ -12,6 +13,7 @@
from unittest.mock import MagicMock
import pytest


def test_main(mocker):
mock_input = mocker.patch(
"builtins.input", side_effect=["sender@example.com", "receiver@example.com"]
Expand Down

0 comments on commit 3ccf8a1

Please sign in to comment.