Fixed typo in common.scad tests.

This commit is contained in:
Revar Desmera 2019-11-10 12:36:50 -08:00
parent 20e2008077
commit 8cd795cc36
2 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ module test_typeof() {
test_typeof(); test_typeof();
module test_istype() { module test_is_type() {
assert(is_type(undef,"undef")); assert(is_type(undef,"undef"));
assert(is_type(true,"boolean")); assert(is_type(true,"boolean"));
assert(is_type(false,"boolean")); assert(is_type(false,"boolean"));
@ -52,7 +52,7 @@ module test_istype() {
assert(is_type(123,["number","string"])); assert(is_type(123,["number","string"]));
assert(is_type("foo",["number","string"])); assert(is_type("foo",["number","string"]));
} }
test_istype(); test_is_type();
module test_is_def() { module test_is_def() {

View file

@ -8,7 +8,7 @@
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,25]; BOSL_VERSION = [2,0,26];
// Section: BOSL Library Version Functions // Section: BOSL Library Version Functions