test: forgot to change a variable.

Fixes Bugzilla #3787.
This commit is contained in:
Ryan C. Gordon 2017-08-29 18:25:55 -04:00
parent 4fc0163853
commit 846a9ab95e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ sdltest_generateRunSeed(void *arg)
}
/* Negative cases */
for (j = -2; j <= 0; i++) {
for (j = -2; j <= 0; j++) {
result = SDLTest_GenerateRunSeed((const int)j);
SDLTest_AssertPass("Call to SDLTest_GenerateRunSeed()");
SDLTest_AssertCheck(result == NULL, "Verify returned value is not NULL");