1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-20 05:21:38 +02:00

update test case

This commit is contained in:
Justin Lin
2019-06-16 17:30:17 +08:00
parent 323e81a82c
commit 46dfe4ff25

View File

@@ -5,7 +5,7 @@ module test_split_str() {
include <sub_str.scad>;
include <split_str.scad>;
assert(["hello", "world"] == split_str("hello,world", ","));
assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ","));
}
test_split_str();