Skip to content

Commit

Permalink
Tests: fix incorrect class/file name for test class
Browse files Browse the repository at this point in the history
The `src` class being tested is called `Cookie`, so the test class should be called `CookieTest`, not `CookiesTest`.
  • Loading branch information
jrfnl committed Feb 2, 2022
1 parent 73dbbbe commit 8746700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CookiesTest.php → tests/CookieTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use WpOrg\Requests\Tests\TestCase;
use WpOrg\Requests\Utility\CaseInsensitiveDictionary;

final class CookiesTest extends TestCase {
final class CookieTest extends TestCase {
public function testBasicCookie() {
$cookie = new Cookie('requests-testcookie', 'testvalue');

Expand Down

0 comments on commit 8746700

Please sign in to comment.