aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2017-06-22 17:50:08 +0100
committerdakkar <dakkar@thenautilus.net>2017-06-22 17:53:52 +0100
commita417854b0835f285461476e1eb9fdbde70d4ad95 (patch)
tree979a077f1b5af794776d7e9cfbc0b1cfd87812c6
parentv1.0.2 (diff)
downloadSietima-a417854b0835f285461476e1eb9fdbde70d4ad95.tar.gz
Sietima-a417854b0835f285461476e1eb9fdbde70d4ad95.tar.bz2
Sietima-a417854b0835f285461476e1eb9fdbde70d4ad95.zip
fix avoid-dups test
multiple addresses should be comma-separated, it worked by accident before, but Email::MIME 1.943 has more correct parsing, and (correctly) failed it
-rw-r--r--Changes1
-rw-r--r--t/tests/sietima/role/avoid-dups.t2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changes b/Changes
index 35ec4fd..8569485 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,5 @@
{{$NEXT}}
+ - fixed test failures under future Email::MIME
1.0.2 2017-06-21 22:53:06+01:00 Europe/London
- bump all dependencies to latest
diff --git a/t/tests/sietima/role/avoid-dups.t b/t/tests/sietima/role/avoid-dups.t
index 671d898..5a45f3b 100644
--- a/t/tests/sietima/role/avoid-dups.t
+++ b/t/tests/sietima/role/avoid-dups.t
@@ -21,7 +21,7 @@ subtest 'in cc' => sub {
subtest 'in to' => sub {
test_sending(
sietima => $s,
- mail => { to => $s->return_path . ' one@users.example.com' },
+ mail => { to => $s->return_path . ', one@users.example.com' },
to => ['two@users.example.com'],
);
};