We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf79a3 commit 5af0dbaCopy full SHA for 5af0dba
src/logic/vm/mod.rs
@@ -539,10 +539,10 @@ mod tests {
539
assert_variables(
540
&state,
541
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 })),
+ "cell1": LValue::Building(Point2 { x: 0, y: 10 }),
+ "cell2": LValue::Building(Point2 { x: 7, y: 7 }),
+ "cell3": LValue::Building(Point2 { x: 9, y: 5 }),
+ "bank1": LValue::Building(Point2 { x: 10, y: 2 }),
546
},
547
);
548
}
0 commit comments