Skip to content

Commit

Permalink
sredjena greska u testu, dodat je os.path.abspath u putanji sacuvane …
Browse files Browse the repository at this point in the history
…slike
  • Loading branch information
MihailoPesic committed Mar 30, 2024
1 parent a9cfe54 commit 61e9ed6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test_filtriranje.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
import pytest
from PIL import Image
from main import Slika
import os

PUTANJA_TEST_SLIKE = "switz.png"
PUTANJA_SACUVANE_SLIKE = "sacuvana_switz.png"
PUTANJA_SACUVANE_SLIKE = os.path.abspath("sacuvana_switz.png")

def test_ucitaj_sliku():
slika = Slika(PUTANJA_TEST_SLIKE)
Expand Down

0 comments on commit 61e9ed6

Please sign in to comment.