diff options
Diffstat (limited to 'tests/Test.php')
-rw-r--r-- | tests/Test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Test.php b/tests/Test.php index b8a02f3..0543c1f 100644 --- a/tests/Test.php +++ b/tests/Test.php @@ -83,7 +83,7 @@ class Test extends TestCase <?php function validate_formname_name($field, $value) { - if ($value !== \'Adelbert\') { + if ($value !== \'Harry\') { $field[\'is_valid\'] = false; } @@ -290,7 +290,7 @@ class Test extends TestCase // valid response validation_function $response = $this->request('POST', 'customername/formname/submit?key=' . $this->apiKey, [ 'form_params' => [ - 'name' => 'Adelbert', + 'name' => 'Harry', 'email' => 'EMAIL', 'date' => 'DATE', ], |