summaryrefslogtreecommitdiff
path: root/lib/custodian/protocoltest/pop3.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2013-05-15 14:17:29 +0100
committerSteve Kemp <steve@steve.org.uk>2013-05-15 14:17:29 +0100
commit953fc70466a919df1e4fce6fc3dea40b951e2185 (patch)
treee196112ccd23b46ee94cfe0d59f3de8a541e3212 /lib/custodian/protocoltest/pop3.rb
parentca28243dce53f0feab9efb535b00f594e511c71c (diff)
The TCP-test now uses a regexp.
Each test has been updated to pass a regexp object to the tcp.rb primitive which actually does the socket connection. This closes #4036
Diffstat (limited to 'lib/custodian/protocoltest/pop3.rb')
-rw-r--r--lib/custodian/protocoltest/pop3.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/pop3.rb b/lib/custodian/protocoltest/pop3.rb
index 838d838..a96762c 100644
--- a/lib/custodian/protocoltest/pop3.rb
+++ b/lib/custodian/protocoltest/pop3.rb
@@ -76,7 +76,7 @@ module Custodian
# reset the error, in case we were previously executed.
@error = nil
- run_test_internal( @host, @port, "+OK" )
+ run_test_internal( @host, @port, /\+OK/i )
end