summaryrefslogtreecommitdiff
path: root/test/net/ftp
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-19 02:37:39 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-19 02:37:39 +0000
commitfc446ac016c20d70db05f49ef89683a4c4df1757 (patch)
tree03e327b53fdb28edfe4657e4a887c90fe7d3c729 /test/net/ftp
parent1029d32c7f01b8f58ae67924a405b4d9d656092a (diff)
Move certificates to test/net/fixtures/.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net/ftp')
-rw-r--r--test/net/ftp/test_ftp.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb
index 4394808075..f514efb182 100644
--- a/test/net/ftp/test_ftp.rb
+++ b/test/net/ftp/test_ftp.rb
@@ -8,9 +8,9 @@ require "tempfile"
class FTPTest < Test::Unit::TestCase
SERVER_ADDR = "127.0.0.1"
- CA_FILE = File.expand_path("../imap/cacert.pem", __dir__)
- SERVER_KEY = File.expand_path("../imap/server.key", __dir__)
- SERVER_CERT = File.expand_path("../imap/server.crt", __dir__)
+ CA_FILE = File.expand_path("../fixtures/cacert.pem", __dir__)
+ SERVER_KEY = File.expand_path("../fixtures/server.key", __dir__)
+ SERVER_CERT = File.expand_path("../fixtures/server.crt", __dir__)
def setup
@thread = nil