diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-28 13:19:05 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-28 13:20:48 +0100 |
| commit | 0c320a6bf3f9d8d2570a9230a29cf8ae925e89f0 (patch) | |
| tree | ce229b0c853409ad5fd57c79605753a2804fe053 /main/tests/test_main.cpp | |
| parent | bbbdabc771662d0effb739237967982cd201ea89 (diff) | |
| download | redot-engine-0c320a6bf3f9d8d2570a9230a29cf8ae925e89f0.tar.gz | |
More server renames for consistency after #37361
Diffstat (limited to 'main/tests/test_main.cpp')
| -rw-r--r-- | main/tests/test_main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/main/tests/test_main.cpp b/main/tests/test_main.cpp index beb955d045..a9a671e2f1 100644 --- a/main/tests/test_main.cpp +++ b/main/tests/test_main.cpp @@ -40,8 +40,8 @@ #include "test_math.h" #include "test_oa_hash_map.h" #include "test_ordered_hash_map.h" -#include "test_physics.h" #include "test_physics_2d.h" +#include "test_physics_3d.h" #include "test_render.h" #include "test_shader_lang.h" #include "test_string.h" @@ -51,8 +51,8 @@ const char **tests_get_names() { static const char *test_names[] = { "string", "math", - "physics", "physics_2d", + "physics_3d", "render", "oa_hash_map", "gui", @@ -81,14 +81,14 @@ MainLoop *test_main(String p_test, const List<String> &p_args) { return TestMath::test(); } - if (p_test == "physics") { + if (p_test == "physics_2d") { - return TestPhysics::test(); + return TestPhysics2D::test(); } - if (p_test == "physics_2d") { + if (p_test == "physics_3d") { - return TestPhysics2D::test(); + return TestPhysics3D::test(); } if (p_test == "render") { |
