WebService Test Requires Int Not String

This commit is contained in:
oleibman
2024-09-02 17:44:42 -07:00
parent e27b17e06f
commit 00cd98ff93
+3 -3
View File
@@ -14,17 +14,17 @@ return [
[
'#VALUE!',
'http://www.example1.com',
['404', 'not found'],
[404, 'not found'],
],
[
'#VALUE!',
'http://www.example2.com',
['200', str_repeat('a', 40000)],
[200, str_repeat('a', 40000)],
],
[
'This is a test',
'http://www.example3.com',
['200', 'This is a test'],
[200, 'This is a test'],
],
];