diff --git a/tests/reference/stable_nightly/light_control-diff_pcb.pdf b/tests/reference/stable_nightly/light_control-diff_pcb.pdf index 27e6e1c7..8a37c243 100644 Binary files a/tests/reference/stable_nightly/light_control-diff_pcb.pdf and b/tests/reference/stable_nightly/light_control-diff_pcb.pdf differ diff --git a/tests/reference/stable_nightly/light_control-only_new.pdf b/tests/reference/stable_nightly/light_control-only_new.pdf index 4a3dccee..e34c9fc3 100644 Binary files a/tests/reference/stable_nightly/light_control-only_new.pdf and b/tests/reference/stable_nightly/light_control-only_new.pdf differ diff --git a/tests/utils/context.py b/tests/utils/context.py index 6020c019..0e8c1d9e 100644 --- a/tests/utils/context.py +++ b/tests/utils/context.py @@ -30,7 +30,7 @@ KICAD_VERSION_5_99 = 5099000 KICAD_VERSION_6_0_0 = 6000000 KICAD_VERSION_7_0_0 = 7000000 KICAD_VERSION_7_0_3 = 7000003 -KICAD_VERSION_7_0_5 = 7000005 +KICAD_VERSION_7_0_7 = 7000007 KICAD_VERSION_8_0_0 = 7099000 MODE_SCH = 1 MODE_PCB = 0 @@ -53,7 +53,7 @@ if kicad_version >= KICAD_VERSION_5_99: BOARDS_DIR = '../board_samples/kicad_'+str(kicad_major+(0 if kicad_minor < 99 else 1)) if kicad_version >= KICAD_VERSION_8_0_0: REF_DIR = 'tests/reference/8_0_0' - elif kicad_version >= KICAD_VERSION_7_0_5 and 'unknown' in build_version: + elif kicad_version >= KICAD_VERSION_7_0_7 and 'rc' in build_version: REF_DIR = 'tests/reference/stable_nightly' elif kicad_version >= KICAD_VERSION_7_0_3: REF_DIR = 'tests/reference/7_0_3'