Update tests after ben merge of fillet working w shell (#3586)
* fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * bump all the things Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
@ -2185,15 +2185,3 @@ someFunction('INVALID')
|
||||
r#"semantic: KclErrorDetails { source_ranges: [SourceRange([89, 114]), SourceRange([126, 155]), SourceRange([159, 182])], message: "Argument at index 0 was supposed to be type kcl_lib::std::sketch::SketchData but found string (text)" }"#
|
||||
);
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn kcl_test_fillet_and_shell() {
|
||||
let code = kcl_input!("fillet-and-shell");
|
||||
|
||||
let result = execute_and_snapshot(code, UnitLength::Mm).await;
|
||||
assert!(result.is_err());
|
||||
assert_eq!(
|
||||
result.err().unwrap().to_string(),
|
||||
r#"engine: KclErrorDetails { source_ranges: [SourceRange([2004, 2065])], message: "Modeling command failed: [ApiError { error_code: InternalEngine, message: \"Invalid brep after shell operation\" }]" }"#
|
||||
);
|
||||
}
|
||||
|
||||
BIN
src/wasm-lib/tests/executor/outputs/fillet-and-shell.png
Normal file
|
After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 82 KiB |
@ -56,3 +56,4 @@ kcl_test!("computed_var", kcl_test_computed_var);
|
||||
kcl_test!("lego", kcl_test_lego);
|
||||
kcl_test!("riddle_small", kcl_test_riddle_small);
|
||||
kcl_test!("tan_arc_x_line", kcl_test_tan_arc_x_line);
|
||||
kcl_test!("fillet-and-shell", kcl_test_fillet_and_shell);
|
||||
|
||||