From 3a6b2c2c35143c4aaa9d8f0fc0b77e2e7be9e4f4 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Mon, 23 Aug 2021 18:36:35 -0700 Subject: [PATCH] Update test_cli.py --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 0dc84e3c..d17ee85c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -7196,7 +7196,7 @@ def test_export_description_template_conditional(): ], ) assert result.exit_code == 0 - with fp as open(f"{FILENAME_EMPTY_TITLE}.json","r"): + with open(f"{FILENAME_EMPTY_TITLE}.json","r") as fp: json_got = json.load(fp)[0] assert json_got["EXIF:ImageDescription"] == DESCRIPTION_VALUE_TITLE_CONDITIONAL