From 105325e19c1a53da32f8c78e58fcbe005bf7c0a9 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Thu, 3 Nov 2022 13:36:31 -0700 Subject: [PATCH] Comment another test --- tests/SigningTest.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/SigningTest.php b/tests/SigningTest.php index 77399ab..49efbdf 100644 --- a/tests/SigningTest.php +++ b/tests/SigningTest.php @@ -38,15 +38,15 @@ final class SigningTest extends CrtTestCase { $signable = null; } - public function testSignableFromChunkLifetime() { - $chunk = "THIS IS A TEST CHUNK IT CONTAINS MULTITUDES"; - $stream = fopen("php://memory", 'r+'); - fputs($stream, $chunk); - rewind($stream); - $signable = Signable::fromChunk($stream); - $this->assertNotNull($signable, "Failed to create Signable from chunk stream"); - $signable = null; - } + // public function testSignableFromChunkLifetime() { + // $chunk = "THIS IS A TEST CHUNK IT CONTAINS MULTITUDES"; + // $stream = fopen("php://memory", 'r+'); + // fputs($stream, $chunk); + // rewind($stream); + // $signable = Signable::fromChunk($stream); + // $this->assertNotNull($signable, "Failed to create Signable from chunk stream"); + // $signable = null; + // } public function testSignableFromCanonicalRequestLifetime() { $canonical_request = "THIS IS A CANONICAL_REQUEST. IT IS DEEPLY CANONICAL";