From e82145d28ae137a6ba2cc805bee819264c34d7f6 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Wed, 23 May 2018 10:18:37 -0300 Subject: [PATCH] Update `ConfigTest::provideInvalidValues()` in order to use installed requirement "ext-curl" instead of "ext-gd" --- tests/ConfigTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ConfigTest.php b/tests/ConfigTest.php index 6cadc826..0b19365e 100644 --- a/tests/ConfigTest.php +++ b/tests/ConfigTest.php @@ -249,7 +249,7 @@ public static function provideInvalidValues() { return [ [new \stdClass()], - [imagecreate(1, 1)], + [curl_init()], ]; }