From bb30911338e78ab5a674c2644d99b17bf9eb1114 Mon Sep 17 00:00:00 2001 From: Stephan Bosch <stephan@rename-it.nl> Date: Thu, 28 Jan 2010 22:15:00 +0100 Subject: [PATCH] Fixed spelling of 'existent' in various testsuite scripts. --- tests/exists.svtest | 6 +++--- tests/extensions/body/basic.svtest | 6 +++--- tests/extensions/environment/rfc.svtest | 2 +- tests/extensions/include/errors/generic.sieve | 2 +- tests/extensions/subaddress/basic.svtest | 4 ++-- tests/header.svtest | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/exists.svtest b/tests/exists.svtest index 63e524676..f215cf826 100644 --- a/tests/exists.svtest +++ b/tests/exists.svtest @@ -17,7 +17,7 @@ test "EXISTS-one" { } if exists "x-nonsense" { - test_fail "exists test found non-existant header"; + test_fail "exists test found non-existent header"; } } @@ -27,7 +27,7 @@ test "EXISTS-two" { } if exists ["from","to","x-nonsense"] { - test_fail "exists test found non-existant header"; + test_fail "exists test found non-existent header"; } } @@ -37,6 +37,6 @@ test "EXISTS-three" { } if exists ["x-spam", "sub", "resent"] { - test_fail "exists test found non-existant header"; + test_fail "exists test found non-existent header"; } } diff --git a/tests/extensions/body/basic.svtest b/tests/extensions/body/basic.svtest index 050ea76f6..fccf59767 100644 --- a/tests/extensions/body/basic.svtest +++ b/tests/extensions/body/basic.svtest @@ -84,14 +84,14 @@ Subject: No body is here! test "No body" { if body :raw :contains "" { - test_fail "matched against non-existant body (:contains \"\")"; + test_fail "matched against non-existent body (:contains \"\")"; } if body :raw :is "" { - test_fail "matched against non-existant body (:is \"\")"; + test_fail "matched against non-existent body (:is \"\")"; } if body :raw :matches "*" { - test_fail "matched against non-existant body (:matches \"*\")"; + test_fail "matched against non-existent body (:matches \"*\")"; } } diff --git a/tests/extensions/environment/rfc.svtest b/tests/extensions/environment/rfc.svtest index 7938765ff..598ca56ac 100644 --- a/tests/extensions/environment/rfc.svtest +++ b/tests/extensions/environment/rfc.svtest @@ -2,7 +2,7 @@ require "vnd.dovecot.testsuite"; require "environment"; require "relational"; -test "Non-existant" { +test "Non-existent" { if environment :contains "nonsense" "" { test_fail "matched unknown environment item"; } diff --git a/tests/extensions/include/errors/generic.sieve b/tests/extensions/include/errors/generic.sieve index 56d0f97da..66eba1813 100644 --- a/tests/extensions/include/errors/generic.sieve +++ b/tests/extensions/include/errors/generic.sieve @@ -1,6 +1,6 @@ require "include"; -# Non-existant sieve script +# Non-existent sieve script include "frop.sieve"; # Use of / in script names diff --git a/tests/extensions/subaddress/basic.svtest b/tests/extensions/subaddress/basic.svtest index 32f795422..679fda7a0 100644 --- a/tests/extensions/subaddress/basic.svtest +++ b/tests/extensions/subaddress/basic.svtest @@ -102,10 +102,10 @@ test_set "envelope.to" "frop@sieve.nl"; test "No detail" { if envelope :detail "to" "virus" { - test_fail ":detail matched non-existant detail element in envelope (separator is missing)"; + test_fail ":detail matched non-existent detail element in envelope (separator is missing)"; } if address :detail "from" "virus" { - test_fail ":detail matched non-existant detail element in from header (separator is missing)"; + test_fail ":detail matched non-existent detail element in from header (separator is missing)"; } } diff --git a/tests/header.svtest b/tests/header.svtest index 2fc5e8051..a8cee307e 100644 --- a/tests/header.svtest +++ b/tests/header.svtest @@ -45,7 +45,7 @@ test "Contains empty - exist" { test "Contains empty - not exist" { if header :contains "x-nonsense" "" { - test_fail "header test :contains match type matches \"\" on non-existant header"; + test_fail "header test :contains match type matches \"\" on non-existent header"; } } -- GitLab