Commit 26fc5d2d authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] typo in loop over dictionary

parent 4c56e2d6
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -232,9 +232,9 @@ def run_renderer(
    elif test_info.config.option.use_ltv:
        if test_info.config.option.ltv_dir:
            FORMAT_TO_FILE = dict()
            for k, v in FORMAT_TO_FILE_LTV:
            for k, v in FORMAT_TO_FILE_LTV.items():
                FORMAT_TO_FILE[k] = str(v).replace(
                    LTV_DIR, test_info.config.option.ltv_dir
                    str(LTV_DIR), str(test_info.config.option.ltv_dir)
                )
        else:
            FORMAT_TO_FILE = FORMAT_TO_FILE_LTV