test: fix error: 'p' was not declared in this scope

This commit is contained in:
2025-11-13 10:55:22 +01:00
parent 1dfa014e05
commit ada549c4d4
+1 -1
View File
@@ -95,7 +95,7 @@ TEST_CASE("Test point creation, query and deletion behaviour", "[point]") {
}
SECTION("Clear single point") {
point_shape_t* point = make_point(1.0, 2.0, 3.0);
point_shape_t* p = make_point(1.0, 2.0, 3.0);
double x, y, z;
coord_point(p, &x, &y, &z);