Skip to content

Commit dbae04d

Browse files
committed
Fix test_gssapi_rfc5587
Test was broken by commit 38a28bf But CI failed to catch it because it was not actually running tests just building them ... Signed-off-by: Simo Sorce <simo@redhat.com>
1 parent c22160d commit dbae04d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ntlmssptest.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2095,8 +2095,8 @@ int test_gssapi_rfc5587(void)
20952095
return EINVAL;
20962096
}
20972097

2098-
if (mech_attrs->count != 10) {
2099-
fprintf(stderr, "expected 10 mech_attr oids, got %lu\n",
2098+
if (mech_attrs->count != 9) {
2099+
fprintf(stderr, "expected 9 mech_attr oids, got %lu\n",
21002100
mech_attrs->count);
21012101
return EINVAL;
21022102
}

0 commit comments

Comments
 (0)