diff options
author | Daniel Weipert <code@drogueronin.de> | 2022-01-10 00:31:23 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-01-10 11:29:13 +0100 |
commit | 843af14c19f62ca642bcd7af59b8ea413f681c50 (patch) | |
tree | 2153be74e35942c552fd0079460c256b9b2f8b96 /tests/Test.php | |
parent | 75f3e8ab4b3d65d6eba16575ca0a4a669b7e27ac (diff) |
Get entries from and to date
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', ], |