1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Made Test.Assert cause fatal error when not in test

This commit is contained in:
Brian Fiete 2022-02-13 07:41:54 -05:00
parent fd4ec25e7b
commit a7075707fe

View file

@ -690,6 +690,8 @@ void Internal::Test_Error(char* error)
str += "\n"; str += "\n";
TestString(str); TestString(str);
} }
else
Internal_FatalError(error);
} }
void Internal::Test_Write(char* strPtr) void Internal::Test_Write(char* strPtr)