Skip to content

Commit

Permalink
fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Md Shahriyar Alam committed Dec 1, 2023
1 parent 00c093a commit d2a60c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ def test_from_canvas(self):
def test_from_path(self):
"""Tests editor from path"""
editor = Editor(
os.path.join(os.getcwd(), "examples", "dev/assets", "pfp.png")
os.path.join(os.getcwd(), "examples", "assets", "pfp.png")
)
self.assertIsInstance(editor, Editor)

def test_from_image(self):
"""Tests editor from image"""
image = Image.open(
os.path.join(os.getcwd(), "examples", "dev/assets", "pfp.png")
os.path.join(os.getcwd(), "examples", "assets", "pfp.png")
)
editor = Editor(image)
self.assertIsInstance(editor, Editor)
Expand Down

0 comments on commit d2a60c5

Please sign in to comment.