From 28f27044e435a2b203e32675e942eb8de620ee58 Mon Sep 17 00:00:00 2001 From: Danack Date: Sat, 18 Mar 2023 17:03:50 +0000 Subject: [PATCH] Fix variable name on error. --- tests/254_getConfigureOptions.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/254_getConfigureOptions.phpt b/tests/254_getConfigureOptions.phpt index 336a1b06..f1f7c049 100644 --- a/tests/254_getConfigureOptions.phpt +++ b/tests/254_getConfigureOptions.phpt @@ -16,7 +16,7 @@ $allOptions = Imagick::getConfigureOptions(); if (!is_array($allOptions)) { echo "Failed to return array".PHP_EOL; - var_dump($options); + var_dump($allOptions); } else if (count($allOptions) == 0) { echo "allOptions is empty".PHP_EOL;