diff --git a/src/snapshots/rustpython_compiler__compile__tests__if_ands.snap b/src/snapshots/rustpython_compiler__compile__tests__if_ands.snap index 0d5953c..d3344e3 100644 --- a/src/snapshots/rustpython_compiler__compile__tests__if_ands.snap +++ b/src/snapshots/rustpython_compiler__compile__tests__if_ands.snap @@ -2,11 +2,11 @@ source: compiler/src/compile.rs expression: "compile_exec(\"\\\nif True and False and False:\n pass\n\")" --- - 0 LoadConst (true) + 0 LoadConst (True) 1 JumpIfFalse (6) - 2 LoadConst (false) + 2 LoadConst (False) 3 JumpIfFalse (6) - 4 LoadConst (false) + 4 LoadConst (False) 5 JumpIfFalse (6) >> 6 LoadConst (None) 7 ReturnValue diff --git a/src/snapshots/rustpython_compiler__compile__tests__if_mixed.snap b/src/snapshots/rustpython_compiler__compile__tests__if_mixed.snap index 5476053..356067a 100644 --- a/src/snapshots/rustpython_compiler__compile__tests__if_mixed.snap +++ b/src/snapshots/rustpython_compiler__compile__tests__if_mixed.snap @@ -2,13 +2,13 @@ source: compiler/src/compile.rs expression: "compile_exec(\"\\\nif (True and False) or (False and True):\n pass\n\")" --- - 0 LoadConst (true) + 0 LoadConst (True) 1 JumpIfFalse (4) - 2 LoadConst (false) + 2 LoadConst (False) 3 JumpIfTrue (8) - >> 4 LoadConst (false) + >> 4 LoadConst (False) 5 JumpIfFalse (8) - 6 LoadConst (true) + 6 LoadConst (True) 7 JumpIfFalse (8) >> 8 LoadConst (None) 9 ReturnValue diff --git a/src/snapshots/rustpython_compiler__compile__tests__if_ors.snap b/src/snapshots/rustpython_compiler__compile__tests__if_ors.snap index d2bc385..4463c3b 100644 --- a/src/snapshots/rustpython_compiler__compile__tests__if_ors.snap +++ b/src/snapshots/rustpython_compiler__compile__tests__if_ors.snap @@ -2,11 +2,11 @@ source: compiler/src/compile.rs expression: "compile_exec(\"\\\nif True or False or False:\n pass\n\")" --- - 0 LoadConst (true) + 0 LoadConst (True) 1 JumpIfTrue (6) - 2 LoadConst (false) + 2 LoadConst (False) 3 JumpIfTrue (6) - 4 LoadConst (false) + 4 LoadConst (False) 5 JumpIfFalse (6) >> 6 LoadConst (None) 7 ReturnValue