summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--editor/tests-private.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/tests-private.hpp b/editor/tests-private.hpp
index 9a39d07d..cd254e85 100644
--- a/editor/tests-private.hpp
+++ b/editor/tests-private.hpp
@@ -56,10 +56,10 @@ struct tests_data final : tests_data_
};
static constexpr test_tuple fields[] = {
- { "None"_s, Test::none, &tests_data::make_test_none, },
- { "Path"_s, Test::path, &tests_data::make_test_path, },
- { "Raycasting"_s, Test::raycast, &tests_data::make_test_raycast },
- { "Region extraction"_s, Test::region, &tests_data::make_test_region },
+ { "None"_s, Test::none, make_test_none, },
+ { "Path"_s, Test::path, make_test_path, },
+ { "Raycasting"_s, Test::raycast, make_test_raycast },
+ { "Region extraction"_s, Test::region, make_test_region },
};
};