more debug about state.json

This commit is contained in:
Kenneth Kehl
2024-04-15 10:27:25 -07:00
parent e92fd011ca
commit 4a6539197f
+1 -1
View File
@@ -167,7 +167,7 @@ def test_create_new_template(authenticated_page):
for root, dirs, files in os.walk(search_path): for root, dirs, files in os.walk(search_path):
if filename in files: if filename in files:
file_path = os.path.join(root, filename) file_path = os.path.join(root, filename)
if os.path.is_file(file_path): if os.path.isfile(file_path):
found_state_json = True found_state_json = True
assert found_state_json is True assert found_state_json is True
assert file_path == 'foo' assert file_path == 'foo'