diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-11-05 07:10:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-11-05 07:10:05 +0000 |
commit | 34ac59c81e7c8b4b85d8a992892dc3a4acdf07b6 (patch) | |
tree | 2c5157e4a59a2184dd3dd96de39225f23da41aa1 /test/openssl/test_pair.rb | |
parent | 639ccc40ecc398ee805c3a7663d9cd8cda22dfc3 (diff) |
openssl/ut_eof.rb: rename TestEOF
* test/openssl/ut_eof.rb (OpenSSL::TestEOF): move TestEOF module
under OpenSSL to get rid of conflict with test/ruby/ut_eof.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56578 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl/test_pair.rb')
-rw-r--r-- | test/openssl/test_pair.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/openssl/test_pair.rb b/test/openssl/test_pair.rb index 7d962c385a..721e8e370e 100644 --- a/test/openssl/test_pair.rb +++ b/test/openssl/test_pair.rb @@ -463,25 +463,25 @@ module OpenSSL::TestPairM end class OpenSSL::TestEOF1 < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPair include OpenSSL::TestEOF1M end class OpenSSL::TestEOF1LowlevelSocket < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPairLowlevelSocket include OpenSSL::TestEOF1M end class OpenSSL::TestEOF2 < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPair include OpenSSL::TestEOF2M end class OpenSSL::TestEOF2LowlevelSocket < OpenSSL::TestCase - include TestEOF + include OpenSSL::TestEOF include OpenSSL::SSLPairLowlevelSocket include OpenSSL::TestEOF2M end |