Skip to content

Commit

Permalink
Update test_path.py
Browse files Browse the repository at this point in the history
  • Loading branch information
baseplate-admin committed Apr 30, 2024
1 parent da3350d commit e981e21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@

def test_path():
path = os.path.join(BASE_DIR, "acid.svg")
base = resvg_py.svg_to_base64()
base = resvg_py.svg_to_base64(path)
print(path)
assert base == svg_output


def test_gzip_path():
path = os.path.join(BASE_DIR, "acid.svg.gz")
base = resvg_py.svg_to_base64()
base = resvg_py.svg_to_base64(path)
print(path)

assert base == svg_output

0 comments on commit e981e21

Please sign in to comment.