From fc446ac016c20d70db05f49ef89683a4c4df1757 Mon Sep 17 00:00:00 2001 From: shugo Date: Sat, 19 Nov 2016 02:37:39 +0000 Subject: Move certificates to test/net/fixtures/. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/imap/test_imap.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/net/imap/test_imap.rb') diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb index cdd9323c10..35e5ed8982 100644 --- a/test/net/imap/test_imap.rb +++ b/test/net/imap/test_imap.rb @@ -4,9 +4,9 @@ require "net/imap" require "test/unit" class IMAPTest < Test::Unit::TestCase - CA_FILE = File.expand_path("cacert.pem", File.dirname(__FILE__)) - SERVER_KEY = File.expand_path("server.key", File.dirname(__FILE__)) - SERVER_CERT = File.expand_path("server.crt", File.dirname(__FILE__)) + 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__) SERVER_ADDR = "127.0.0.1" -- cgit v1.2.3