From b6085e0cbc24b76de7f4f911325341c75dd77fe6 Mon Sep 17 00:00:00 2001 From: RonaldoCMP Date: Tue, 11 Aug 2020 15:36:44 +0100 Subject: [PATCH] Exclude echo() --- tests/test_arrays.scad | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_arrays.scad b/tests/test_arrays.scad index 2f2ff1c..8df23a8 100644 --- a/tests/test_arrays.scad +++ b/tests/test_arrays.scad @@ -476,7 +476,6 @@ module test_array_dim() { } test_array_dim(); -echo(transpose([[1,2,3],[4,5,6]],reverse=true)); module test_transpose() { assert(transpose([[1,2,3],[4,5,6],[7,8,9]]) == [[1,4,7],[2,5,8],[3,6,9]]);