This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 0adcf4af Allow for another name
0adcf4af is described below
commit 0adcf4afb8d2761a79bca4943b2c0c99512b729c
Author: Sebb <[email protected]>
AuthorDate: Wed May 29 16:41:54 2024 +0100
Allow for another name
---
lib/spec/lib/mail/mlist_spec.rb | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/spec/lib/mail/mlist_spec.rb b/lib/spec/lib/mail/mlist_spec.rb
index c22a573d..61f37267 100644
--- a/lib/spec/lib/mail/mlist_spec.rb
+++ b/lib/spec/lib/mail/mlist_spec.rb
@@ -104,6 +104,7 @@ describe ASF::MLIST do
expect(list.class).to eq(String)
expect(dom).to match(/^[a-z.0-9-]+\.[a-z]+$/)
next if list == 'commits.deprecated' # allow for unusual list name
+ next if list == '_test_ephemeral_' # allow for unusual list name
expect(list).to match(/^[a-z0-9-]+$/)
end
end