unit1304: make exception inline

This commit is contained in:
Viktor Szakats 2025-07-16 13:42:42 +02:00
parent dd6cef6c87
commit eed641d269
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
extend-ignore-identifiers-re = [
"^(ba|pn|PN|UE)$",
"^(CNA|ECT|ser|ECT0|ECT1)$",
"^(admi|GOST|HELO|helo|htpt|PASE)$",
"^(GOST|HELO|helo|htpt|PASE)$",
"^(numer|optin|_stati64)$",
"^0x[0-9a-fA-F]+FUL$",
"^(Januar|eyeballers|HELO_smtp|kno22|MTA4MzIy|passin|perfec|__SecURE|SMTP_HELO|v_alue)$",

View file

@ -80,7 +80,7 @@ static CURLcode test_unit1304(char *arg)
* Test a non existent login (substring of an existing one) in our
* netrc file.
*/
login = (char *)CURL_UNCONST("admi");
login = (char *)CURL_UNCONST("admi"); /* spellchecker:disable-line */
Curl_netrc_init(&store);
result = Curl_parsenetrc(&store,
"example.com", &login, &password, arg);