Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
driusan committed Jun 13, 2023
1 parent 88c8c36 commit 1d117ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions raisinbread/test/api/LorisApiInstrumentsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ public function testGetCandidatesCandidVisitInstrumentsInstrument(): void
$body = $response->getBody();
$this->assertNotEmpty($body);

$bodystr = $response->getBody()->getContents();
print "body: $bodystr";
$InstrumentsArray = json_decode(
(string) utf8_encode(
$response->getBody()->getContents()
),
(string) utf8_encode($bodystr)),
true
);
$this->assertNotEmpty($InstrumentsArray['Data']);
Expand Down
2 changes: 2 additions & 0 deletions raisinbread/test/api/LorisApiSitesTest_v0_0_3.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class LorisApiSitesTest_v0_0_3 extends LorisApiAuthenticatedTest_v0_0_3
*/
public function testGetSites(): void
{
print "test get sites v0.0.3 (should fail)";

$response = $this->client->request(
'GET',
"sites",
Expand Down

0 comments on commit 1d117ab

Please sign in to comment.