From 1230b0a8abdb42ea0257ed9b3edbe70507605a24 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Thu, 13 Nov 2025 10:55:53 +0100 Subject: [PATCH] test: fix typo --- tests/occt/point-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/occt/point-test.cpp b/tests/occt/point-test.cpp index 0c7d7b5..0ded2db 100644 --- a/tests/occt/point-test.cpp +++ b/tests/occt/point-test.cpp @@ -147,7 +147,7 @@ TEST_CASE("Benchmark point operations") { SECTION("make_point performance") { point_shape_t* p = nullptr; BENCHMARK("Create point") { - return p = makes_point(1.0, 2.0, 3.0); + return p = make_point(1.0, 2.0, 3.0); }; delete_point(p); }