1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed 'expected error' logic

This commit is contained in:
Brian Fiete 2020-07-19 11:57:04 -07:00
parent af9ac0b918
commit 327ba62b5a

View file

@ -11758,7 +11758,7 @@ namespace IDE
}
else if (cmd == "error")
{
if ((mRunningTestScript) && (!IsCrashDump) && (!mScriptManager.IsErrorExpected(param)))
if ((mRunningTestScript) && (!IsCrashDump) && (!mScriptManager.IsErrorExpected(param, false)))
mScriptManager.Fail(param);
bool isFirstMsg = true;