Skip to content

Commit 5af0dba

Browse files
committed
Clean up test_link_max_range
1 parent dbf79a3 commit 5af0dba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/logic/vm/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -539,10 +539,10 @@ mod tests {
539539
assert_variables(
540540
&state,
541541
map_iter! {
542-
"cell1": Some(LValue::Building(Point2 { x: 0, y: 10 })),
543-
"cell2": Some(LValue::Building(Point2 { x: 7, y: 7 })),
544-
"cell3": Some(LValue::Building(Point2 { x: 9, y: 5 })),
545-
"bank1": Some(LValue::Building(Point2 { x: 10, y: 2 })),
542+
"cell1": LValue::Building(Point2 { x: 0, y: 10 }),
543+
"cell2": LValue::Building(Point2 { x: 7, y: 7 }),
544+
"cell3": LValue::Building(Point2 { x: 9, y: 5 }),
545+
"bank1": LValue::Building(Point2 { x: 10, y: 2 }),
546546
},
547547
);
548548
}

0 commit comments

Comments
 (0)