[Bf-blender-cvs] [95ab16004d1] master: Cleanup: Remove debug print in test

Hans Goudey noreply at git.blender.org
Thu Jul 21 15:16:22 CEST 2022


Commit: 95ab16004d1e55cd4796b35d2a9f0e9695644f92
Author: Hans Goudey
Date:   Thu Jul 21 08:00:30 2022 -0500
Branches: master
https://developer.blender.org/rB95ab16004d1e55cd4796b35d2a9f0e9695644f92

Cleanup: Remove debug print in test

===================================================================

M	source/blender/blenlib/tests/BLI_length_parameterize_test.cc

===================================================================

diff --git a/source/blender/blenlib/tests/BLI_length_parameterize_test.cc b/source/blender/blenlib/tests/BLI_length_parameterize_test.cc
index 11f4997f563..d59f7ae3c28 100644
--- a/source/blender/blenlib/tests/BLI_length_parameterize_test.cc
+++ b/source/blender/blenlib/tests/BLI_length_parameterize_test.cc
@@ -210,7 +210,6 @@ TEST(length_parameterize, ArbitraryFloatSimple)
   sample_at_lengths(lengths, sample_lengths, indices, factors);
   Array<float> results(4);
   linear_interpolation<float>(values, indices, factors, results);
-  results.as_span().print_as_lines("results");
   Array<float> expected({
       0.5f,
       1.5f,
@@ -234,7 +233,6 @@ TEST(length_parameterize, ArbitraryFloat2)
   sample_at_lengths(lengths, sample_lengths, indices, factors);
   Array<float2> results(12);
   linear_interpolation<float2>(values, indices, factors, results);
-  results.as_span().print_as_lines("results");
   Array<float2> expected({
       {0.5f, 0.0f},
       {1.0f, 0.5f},



More information about the Bf-blender-cvs mailing list