Skip to content

Commit

Permalink
WebService Test Requires Int Not String
Browse files Browse the repository at this point in the history
  • Loading branch information
oleibman committed Sep 3, 2024
1 parent e27b17e commit 00cd98f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/data/Calculation/Web/WEBSERVICE.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
[
'#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'],
],
];

0 comments on commit 00cd98f

Please sign in to comment.