Merge pull request #894 from ennorehling/develop

change test to match new behavior.
This commit is contained in:
Enno Rehling 2020-03-01 19:29:45 +01:00 committed by GitHub
commit c44bff801f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ static void test_stealth(CuTest *tc) {
CuAssertIntEquals(tc, -1, u_geteffstealth(u)); CuAssertIntEquals(tc, -1, u_geteffstealth(u));
CuAssertIntEquals(tc, 2, eff_stealth(u, u->region)); CuAssertIntEquals(tc, 2, eff_stealth(u, u->region));
u_seteffstealth(u, 3); u_seteffstealth(u, 3);
CuAssertIntEquals(tc, 3, u_geteffstealth(u)); CuAssertIntEquals(tc, 2, u_geteffstealth(u));
CuAssertIntEquals(tc, 2, eff_stealth(u, u->region)); CuAssertIntEquals(tc, 2, eff_stealth(u, u->region));
u_seteffstealth(u, 1); u_seteffstealth(u, 1);
CuAssertIntEquals(tc, 1, u_geteffstealth(u)); CuAssertIntEquals(tc, 1, u_geteffstealth(u));