From 46dfe4ff258616394475c81e842488242a0127ed Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 16 Jun 2019 17:30:17 +0800 Subject: [PATCH] update test case --- test/test_split_str.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_split_str.scad b/test/test_split_str.scad index 5ffd78db..e72b814a 100644 --- a/test/test_split_str.scad +++ b/test/test_split_str.scad @@ -5,7 +5,7 @@ module test_split_str() { include ; include ; - assert(["hello", "world"] == split_str("hello,world", ",")); + assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ",")); } test_split_str(); \ No newline at end of file