From 8cd795cc3650b800ef99be2948ce3bae9ab0f852 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Sun, 10 Nov 2019 12:36:50 -0800 Subject: [PATCH] Fixed typo in common.scad tests. --- tests/test_common.scad | 4 ++-- version.scad | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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