From 05d4bdc499a1a25a4ac8043c720feed827b928b4 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Wed, 21 Jul 2021 10:10:18 +0200 Subject: [PATCH] restore behaviour for unittests as 'create stdsubdomain' default was yes in the settings but no for direct API usage Signed-off-by: Michael Kaufmann --- tests/Customers/CustomersTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Customers/CustomersTest.php b/tests/Customers/CustomersTest.php index 03076927..3b76bb6a 100644 --- a/tests/Customers/CustomersTest.php +++ b/tests/Customers/CustomersTest.php @@ -513,7 +513,8 @@ class CustomersTest extends TestCase 'customernumber' => 1338, 'sendpassword' => 0, 'perlenabled' => 2, - 'dnsenabled' => 4 + 'dnsenabled' => 4, + 'createstdsubdomain' => 0 ]; $json_result = Customers::getLocal($admin_userdata, $data)->add();