Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed Sep 17, 2024
1 parent 050c71a commit 3f9e684
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vm/src/vm/runners/builtin_runner/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ impl BuiltinRunner {
};
Ok(self.instances_per_component() as usize * components)

Check warning on line 197 in vm/src/vm/runners/builtin_runner/mod.rs

View check run for this annotation

Codecov / codecov/patch

vm/src/vm/runners/builtin_runner/mod.rs#L197

Added line #L197 was not covered by tests
}
// Dynamic layout allows for builtins with ratio 0
Some(0) => Ok(0),

Check warning on line 200 in vm/src/vm/runners/builtin_runner/mod.rs

View check run for this annotation

Codecov / codecov/patch

vm/src/vm/runners/builtin_runner/mod.rs#L200

Added line #L200 was not covered by tests
Some(ratio) => {
let min_step = (ratio * self.instances_per_component()) as usize;
Expand Down

0 comments on commit 3f9e684

Please sign in to comment.