From 62381365c80ef931f720192f2b70ddfd7e0bfdbe Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sat, 23 Jul 2016 18:54:25 -0500 Subject: [PATCH] Tests/X509: make dn more generic in unit test --- tests/Unit/File/X509/CSRTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/File/X509/CSRTest.php b/tests/Unit/File/X509/CSRTest.php index 8d63ecff..fa86d356 100644 --- a/tests/Unit/File/X509/CSRTest.php +++ b/tests/Unit/File/X509/CSRTest.php @@ -115,7 +115,7 @@ U9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ 37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X/scw9RZz+/6rCJ4p0= -----END RSA PRIVATE KEY-----'); $x509->setPrivateKey($rsa); - $x509->setDN(array('cn' => 'ncgamers.org')); + $x509->setDN(array('cn' => 'website.com')); $x509->saveCSR($x509->signCSR('sha256WithRSAEncryption'), FILE_X509_FORMAT_DER); } }