From 06dc90ebf7d3c253cfe9d5e6302ac253fcd0b9e9 Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Sun, 1 Mar 2026 22:34:09 -0500 Subject: [PATCH] Fix typo --- tests/PHPCurlClass/PHPCurlClassTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PHPCurlClass/PHPCurlClassTest.php b/tests/PHPCurlClass/PHPCurlClassTest.php index bde0e76..d22414a 100644 --- a/tests/PHPCurlClass/PHPCurlClassTest.php +++ b/tests/PHPCurlClass/PHPCurlClassTest.php @@ -4690,7 +4690,7 @@ class PHPCurlClassTest extends \PHPUnit\Framework\TestCase // likelihood that the request will be stopped before the full response // is downloaded. // 51200 bytes/s = 50 kilobits/s. - $test_2->setOpt(CURLOPT_MAX_RECV_SPEED_LARGE, 51200); + $test_2->curl->setOpt(CURLOPT_MAX_RECV_SPEED_LARGE, 51200); $test_2->curl->setStop($stop_request_early); $test_2->server('download_file_size', 'GET', [ 'bytes' => $response_length_bytes,