diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-04-06 21:12:20 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-05-01 00:56:42 +0200 |
commit | 0683b2f5935b6df26723bf89d5b71d002f99aaf2 (patch) | |
tree | 304ca6f7833df28ce28eb295c21ced80a0408846 /test | |
parent | be95429ca287945778d05eb24990f5c08024f901 (diff) |
Flatten the conditionals so it is easier to read
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/disposition.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/disposition.c b/test/unit/disposition.c index 08ac929e..47e2f4eb 100644 --- a/test/unit/disposition.c +++ b/test/unit/disposition.c @@ -32,6 +32,7 @@ struct testcase cases[] = { { "attachment; filename=/foo", "attachment", "_foo" }, { "attachment; filename=./../foo", "attachment", "_.._foo" }, { "attachment; filename=", "attachment", NULL }, + { "attachment; filename=\"foo", "attachment", NULL }, { "attachment; filename= ", "attachment", NULL }, { "attachment; filename=\"", "attachment", NULL }, { "attachment; filename=\"foo", "attachment", NULL }, |