From 7cba0b60f9f73b34acd88d7706abd76555f07736 Mon Sep 17 00:00:00 2001
From: Revar Desmera <revarbat@gmail.com>
Date: Fri, 20 Mar 2020 13:53:47 -0700
Subject: [PATCH] Fixed regression test for function namechange.

---
 tests/test_geometry.scad | 16 ++++++++--------
 version.scad             |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/tests/test_geometry.scad b/tests/test_geometry.scad
index 7c3291d..47f28f3 100644
--- a/tests/test_geometry.scad
+++ b/tests/test_geometry.scad
@@ -402,15 +402,15 @@ module test_plane3pt_indexed() {
 test_plane3pt_indexed();
 
 
-module test_plane_from_pointslist() {
-	assert(plane_from_pointslist([[0,0,20], [0,10,10], [0,0,0], [0,5,3]]) == [1,0,0,0]);
-	assert(plane_from_pointslist([[2,0,20], [2,10,10], [2,0,0], [2,3,4]]) == [1,0,0,2]);
-	assert(plane_from_pointslist([[0,0,0], [10,0,10], [0,0,20], [5,0,7]]) == [0,1,0,0]);
-	assert(plane_from_pointslist([[0,2,0], [10,2,10], [0,2,20], [4,2,3]]) == [0,1,0,2]);
-	assert(plane_from_pointslist([[0,0,0], [10,10,0], [20,0,0], [8,3,0]]) == [0,0,1,0]);
-	assert(plane_from_pointslist([[0,0,2], [10,10,2], [20,0,2], [3,4,2]]) == [0,0,1,2]);
+module test_plane_from_points() {
+	assert(plane_from_points([[0,0,20], [0,10,10], [0,0,0], [0,5,3]]) == [1,0,0,0]);
+	assert(plane_from_points([[2,0,20], [2,10,10], [2,0,0], [2,3,4]]) == [1,0,0,2]);
+	assert(plane_from_points([[0,0,0], [10,0,10], [0,0,20], [5,0,7]]) == [0,1,0,0]);
+	assert(plane_from_points([[0,2,0], [10,2,10], [0,2,20], [4,2,3]]) == [0,1,0,2]);
+	assert(plane_from_points([[0,0,0], [10,10,0], [20,0,0], [8,3,0]]) == [0,0,1,0]);
+	assert(plane_from_points([[0,0,2], [10,10,2], [20,0,2], [3,4,2]]) == [0,0,1,2]);
 }
-test_plane_from_pointslist();
+test_plane_from_points();
 
 
 module test_plane_normal() {
diff --git a/version.scad b/version.scad
index 309d5bc..7ff8aaa 100644
--- a/version.scad
+++ b/version.scad
@@ -8,7 +8,7 @@
 //////////////////////////////////////////////////////////////////////
 
 
-BOSL_VERSION = [2,0,205];
+BOSL_VERSION = [2,0,206];
 
 
 // Section: BOSL Library Version Functions