Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 2b5e588

Browse files
committed
dataProvider naming in each row fix
1 parent 92f8cf3 commit 2b5e588

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/ClientTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,8 @@ public function testFormUrlEncodeSeparator()
528528
public function uriDataProvider()
529529
{
530530
return [
531-
['valid-relative' => ['/example', true]],
532-
['invalid-absolute' => ['http://localhost/example', false]]
531+
'valid-relative' => ['/example', true],
532+
'invalid-absolute' => ['http://localhost/example', false],
533533
];
534534
}
535535

@@ -549,8 +549,8 @@ public function testUriCorrectlyDeterminesWhetherOrNotItIsAValidRelativeUri($uri
549549
public function portChangeDataProvider()
550550
{
551551
return [
552-
['https://localhost/example', 443],
553-
['http://localhost/example', 80]
552+
'default-https' => ['https://localhost/example', 443],
553+
'default-http' => ['http://localhost/example', 80]
554554
];
555555
}
556556

0 commit comments

Comments
 (0)