From d53f721af54465a4bdda1af16cd2f8516a0e173e Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Fri, 24 Nov 2023 11:30:38 -0800 Subject: [PATCH] temp test removal --- tests/test_template.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/test_template.py b/tests/test_template.py index dcff43fe6..7c6076e16 100644 --- a/tests/test_template.py +++ b/tests/test_template.py @@ -1189,13 +1189,13 @@ def test_function(photosdb): assert rendered == [f"{photo.original_filename}-FOO"] -def test_function_url(photosdb): - """Test {function}""" - photo = photosdb.get_photo(UUID_DICT["favorite"]) - rendered, _ = photo.render_template( - "{function:https://raw.githubusercontent.com/RhetTbull/osxphotos/main/examples/template_function.py::example}" - ) - assert rendered == [f"{pathlib.Path(photo.original_filename).stem}#!"] +# def test_function_url(photosdb): +# """Test {function}""" +# photo = photosdb.get_photo(UUID_DICT["favorite"]) +# rendered, _ = photo.render_template( +# "{function:https://raw.githubusercontent.com/RhetTbull/osxphotos/main/examples/template_function.py::example}" +# ) +# assert rendered == [f"{pathlib.Path(photo.original_filename).stem}#!"] def test_function_bad(photosdb):