mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
Merge pull request #78018 from Calinou/test-basis-fix-build
Fix compilation of basis unit test
This commit is contained in:
commit
cebaa3f763
@ -315,11 +315,11 @@ void test_euler_conversion() {
|
||||
}
|
||||
}
|
||||
|
||||
void check_test(std::string test_case_name, bool condition) {
|
||||
void check_test(const char *test_case_name, bool condition) {
|
||||
if (!condition) {
|
||||
OS::get_singleton()->print("FAILED - %s\n", test_case_name.c_str());
|
||||
OS::get_singleton()->print("FAILED - %s\n", test_case_name);
|
||||
} else {
|
||||
OS::get_singleton()->print("PASSED - %s\n", test_case_name.c_str());
|
||||
OS::get_singleton()->print("PASSED - %s\n", test_case_name);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user