diff options
author | dakkar <dakkar@thenautilus.net> | 2016-06-21 15:16:19 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2016-06-21 15:16:19 +0100 |
commit | 677ea06663c91dc111a83157e289bc557a0d23fe (patch) | |
tree | f9b02e1ff9af7ef0e2f3d9c1d10bd18835ec73f4 /t | |
parent | SubjectTag role (diff) | |
download | Sietima-677ea06663c91dc111a83157e289bc557a0d23fe.tar.gz Sietima-677ea06663c91dc111a83157e289bc557a0d23fe.tar.bz2 Sietima-677ea06663c91dc111a83157e289bc557a0d23fe.zip |
Sietima::Message has subscribers as recipients
this way it's going to be easier to manipulate messages based on
subscribers
Diffstat (limited to 't')
-rw-r--r-- | t/lib/Test/Sietima.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/Test/Sietima.pm b/t/lib/Test/Sietima.pm index 115a1e6..867fd5a 100644 --- a/t/lib/Test/Sietima.pm +++ b/t/lib/Test/Sietima.pm @@ -92,7 +92,7 @@ sub deliveries_are { field from => $args{from}||$return_path; field to => bag { for (@recipients) { - item object { call address => $_ }; + item $_; } }; }; |