diff --git a/www/admin/class_test.json.php b/www/admin/class_test.json.php
index 6c596280..21906015 100644
--- a/www/admin/class_test.json.php
+++ b/www/admin/class_test.json.php
@@ -67,6 +67,8 @@ print "J/S::E-JSON ERROR: " . $json_class::jsonGetLastError() . ": " . $json_cla
$array = ['foo' => 'bar'];
$output = Json::jsonConvertArrayTo($array);
print "S::JSON: " . DgS::printAr($array) . " => " . $output . "
";
+$array = ['foo' => 'bar', 'sub' => ['other' => 'this', 'foo' => 'bar', 'set' => [12, 34, true]]];
+print "Pretty:
" . Json::jsonPrettyPrint($array) . "