mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Fixed the test vm for a missed comparison operator
This commit is contained in:
@@ -56,7 +56,7 @@ impl VirtualMachine {
|
||||
|
||||
loop {
|
||||
// for instruction in code.instructions {
|
||||
if self.program_counter > current_frame.instructions.len() {
|
||||
if self.program_counter >= current_frame.instructions.len() {
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user