1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +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";
TestString(str);
}
else
Internal_FatalError(error);
}
void Internal::Test_Write(char* strPtr)