diff options
author | dakkar <dakkar@thenautilus.net> | 2017-01-29 13:40:19 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2017-01-29 13:40:19 +0000 |
commit | 9f49c7ceed9906522ae81f5e0443852df7b416e3 (patch) | |
tree | 6c9497f28ee0deda22a9e37af62cb119746fc25b /t/tests/sietima/role/replyto.t | |
parent | moderation messages work enough, kill TODO (diff) | |
download | Sietima-9f49c7ceed9906522ae81f5e0443852df7b416e3.tar.gz Sietima-9f49c7ceed9906522ae81f5e0443852df7b416e3.tar.bz2 Sietima-9f49c7ceed9906522ae81f5e0443852df7b416e3.zip |
fix SubscriberFromHashRef
it made it easy to set prefs, but impossible to set aliases
Diffstat (limited to 't/tests/sietima/role/replyto.t')
-rw-r--r-- | t/tests/sietima/role/replyto.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tests/sietima/role/replyto.t b/t/tests/sietima/role/replyto.t index bae1bdf..0ede95e 100644 --- a/t/tests/sietima/role/replyto.t +++ b/t/tests/sietima/role/replyto.t @@ -82,7 +82,7 @@ subtest 'enabled for some' => sub { subscribers => [ { address => 'one@users.example.com', - munge_reply_to => 1, + prefs => { munge_reply_to => 1 }, }, 'two@users.example.com', ], @@ -115,7 +115,7 @@ subtest 'disabled for some' => sub { subscribers => [ { address => 'one@users.example.com', - munge_reply_to => 0, + prefs => { munge_reply_to => 0 }, }, 'two@users.example.com', ], |