From 90fec631040e572f0d4c559351da3efc702b1081 Mon Sep 17 00:00:00 2001 From: Ron Arts Date: Mon, 30 Oct 2017 16:41:10 +0100 Subject: [PATCH] Setup the public.key.crlf with the proper permissions --- tests/AuthorizationServerTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/AuthorizationServerTest.php b/tests/AuthorizationServerTest.php index 91ca9e4b..c937e84a 100644 --- a/tests/AuthorizationServerTest.php +++ b/tests/AuthorizationServerTest.php @@ -31,6 +31,7 @@ class AuthorizationServerTest extends \PHPUnit_Framework_TestCase // Make sure the keys have the correct permissions. chmod(__DIR__ . '/Stubs/private.key', 0600); chmod(__DIR__ . '/Stubs/public.key', 0600); + chmod(__DIR__ . '/Stubs/public.key.crlf', 0600); } public function testRespondToRequestInvalidGrantType()