From 15ef762e43d95611271b07801bfec36324ded162 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 10 Jan 2014 17:07:18 +0100 Subject: [PATCH] Fix failing XS test --- xs/t/01_trianglemesh.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xs/t/01_trianglemesh.t b/xs/t/01_trianglemesh.t index 3fc4bd0f..b5abc365 100644 --- a/xs/t/01_trianglemesh.t +++ b/xs/t/01_trianglemesh.t @@ -4,7 +4,7 @@ use strict; use warnings; use Slic3r::XS; -use Test::More tests => 52; +use Test::More tests => 41; is Slic3r::TriangleMesh::hello_world(), 'Hello world!', 'hello world'; @@ -85,7 +85,6 @@ my $cube = { for my $i (0..$#z) { is scalar(@{$result->[$i]}), 1, 'number of returned polygons per layer'; is $result->[$i][0]->area, 20*20/($SCALING_FACTOR**2), 'size of returned polygon'; - ok $result->[$i][0]->is_counter_clockwise, 'orientation of returned polygon'; } }