Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-07-21 16:00:30 +0300
committerHans Goudey <h.goudey@me.com>2022-07-21 16:00:30 +0300
commit95ab16004d1e55cd4796b35d2a9f0e9695644f92 (patch)
tree548213475b057f8a67341d9ece415ac64ae756ae /source/blender/blenlib/tests
parent03338e027081744b742e69fff21a74b1732f76ab (diff)
Cleanup: Remove debug print in test
Diffstat (limited to 'source/blender/blenlib/tests')
-rw-r--r--source/blender/blenlib/tests/BLI_length_parameterize_test.cc2
1 files changed, 0 insertions, 2 deletions
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},