diff options
author | Robin Appelman <robin@icewind.nl> | 2023-07-13 15:36:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 15:36:51 +0200 |
commit | c988d782ebeb5e5df92c6e2b0f03fd0643db18a1 (patch) | |
tree | 469e148842db12dc33b944c8f483df4d7a0079a9 /tests | |
parent | c5a6c7e0dd9666cc8c550b616d13118616f67779 (diff) | |
parent | 1be836273ddba6e0ddb3509a1d898535df9fd169 (diff) | |
download | nextcloud-server-c988d782ebeb5e5df92c6e2b0f03fd0643db18a1.tar.gz nextcloud-server-c988d782ebeb5e5df92c6e2b0f03fd0643db18a1.zip |
Merge pull request #39331 from nextcloud/feature/openapi/core
core: Add OpenAPI spec
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Core/Controller/ClientFlowLoginV2ControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php b/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php index a1f50e328dd..fac060262ed 100644 --- a/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php +++ b/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php @@ -106,7 +106,7 @@ class ClientFlowLoginV2ControllerTest extends TestCase { $result = $this->controller->poll('token'); - $this->assertSame($creds, $result->getData()); + $this->assertSame($creds->jsonSerialize(), $result->getData()); $this->assertSame(Http::STATUS_OK, $result->getStatus()); } |