diff --git a/tests/test_common.scad b/tests/test_common.scad index 7f54b02..9a1349b 100644 --- a/tests/test_common.scad +++ b/tests/test_common.scad @@ -22,7 +22,7 @@ module test_typeof() { test_typeof(); -module test_istype() { +module test_is_type() { assert(is_type(undef,"undef")); assert(is_type(true,"boolean")); assert(is_type(false,"boolean")); @@ -52,7 +52,7 @@ module test_istype() { assert(is_type(123,["number","string"])); assert(is_type("foo",["number","string"])); } -test_istype(); +test_is_type(); module test_is_def() { diff --git a/version.scad b/version.scad index 3952032..1b06828 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,25]; +BOSL_VERSION = [2,0,26]; // Section: BOSL Library Version Functions