Skip to content

Commit f72eb0e

Browse files
authored
Cube example didn't actually work (#1478)
* Cube example didn't actually work * Bump h2 in fuzz tests
1 parent 40479d1 commit f72eb0e

File tree

3 files changed

+683
-187
lines changed

3 files changed

+683
-187
lines changed

src/wasm-lib/grackle/src/tests.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -1047,14 +1047,7 @@ fn store_object_with_array_property() {
10471047
#[ignore = "haven't done API calls or stdlib yet"]
10481048
#[test]
10491049
fn stdlib_api_calls() {
1050-
let program = "const x0 = startSketchAt([0, 0])
1051-
const x1 = line([0, 10], x0)
1052-
const x2 = line([10, 0], x1)
1053-
const x3 = line([0, -10], x2)
1054-
const x4 = line([0, 0], x3)
1055-
const x5 = close(x4)
1056-
const x6 = extrude(20, x5)
1057-
show(x6)";
1050+
let program = include_str!("../../tests/executor/inputs/cube.kcl");
10581051
must_plan(program);
10591052
}
10601053

0 commit comments

Comments
 (0)