1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Use unused variable

This commit is contained in:
J. King 2022-08-05 22:10:36 -04:00
parent 4d18bf27e2
commit 64ec3f6ae4

View file

@ -906,7 +906,7 @@ class TestV1_2 extends \JKingWeb\Arsse\Test\AbstractTest {
$this->dbMock->folderPropertiesGet->with($this->userId, 1)->returns($this->v($out1)); $this->dbMock->folderPropertiesGet->with($this->userId, 1)->returns($this->v($out1));
$this->dbMock->folderPropertiesGet->with($this->userId, 2)->returns($this->v($out2)); $this->dbMock->folderPropertiesGet->with($this->userId, 2)->returns($this->v($out2));
$exp = HTTP::respJson(['folders' => [$out1]]); $exp = HTTP::respJson(['folders' => [$out1]]);
$this->assertMessage($exp, $this->req("POST", "/folders?name=Hardware", json_encode($in))); $this->assertMessage($exp, $this->req("POST", $url, json_encode($in)));
} }
public function testMeldJsonAndQueryParameters(): void { public function testMeldJsonAndQueryParameters(): void {