mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Fixed typo in common.scad tests.
This commit is contained in:
parent
20e2008077
commit
8cd795cc36
2 changed files with 3 additions and 3 deletions
|
@ -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() {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,25];
|
||||
BOSL_VERSION = [2,0,26];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue