test: fix typo

This commit is contained in:
2025-11-13 10:55:53 +01:00
parent ada549c4d4
commit 1230b0a8ab
+1 -1
View File
@@ -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);
}