mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-04 15:17:36 +02:00
Fixed typo in common.scad tests.
This commit is contained in:
@@ -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() {
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,25];
|
BOSL_VERSION = [2,0,26];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
Reference in New Issue
Block a user