Fix broken test from 'no const/let' PR (#4078)

I must have missed this amongst all the "websocket closed early" noise,
sorry.
This commit is contained in:
Adam Chalmers
2024-10-02 18:23:47 -05:00
committed by GitHub
parent f9a07627d8
commit 88510e30b2

View File

@ -2041,7 +2041,7 @@ const extrusion = extrude(10, sketch001)
assert!(result.is_err());
assert_eq!(
result.err().unwrap().to_string(),
r#"type: KclErrorDetails { source_ranges: [SourceRange([74, 131])], message: "Cannot have an x constrained angle of 90 degrees" }"#
r#"type: KclErrorDetails { source_ranges: [SourceRange([68, 125])], message: "Cannot have an x constrained angle of 90 degrees" }"#
);
}