Merge pull request #4 from krithik/master

modify variable i to make test slightly more useful
This commit is contained in:
Mark VanderVoord
2016-03-31 21:08:21 -04:00
+2
View File
@@ -349,10 +349,12 @@ void test_AbilityToExitTryWithoutThrowingAnError(void)
Try
{
ExitTry();
i = 1;
TEST_FAIL_MESSAGE("Should Have Exited Try Before This");
}
Catch(e)
{
i = 2;
TEST_FAIL_MESSAGE("Should Not Have Been Caught");
}