Skip to content

Commit

Permalink
Update IntegrationTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Oct 8, 2023
1 parent 824eaf0 commit 1b94d59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/IntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ public function testShowRepo(): void

$response = $client
->repositories()
->workspaces('atlassian')
->show('stash-example-plugin');
->workspaces('StyleCI')
->show('test');

self::assertIsArray($response);
self::assertTrue(isset($response['uuid']));
self::assertSame('{7dd600e6-0d9c-4801-b967-cb4cc17359ff}', $response['uuid']);
self::assertSame('{e530baa1-ce6e-4d52-a292-0432765c1970}', $response['uuid']);
}

public function testRepoNotFound(): void
Expand All @@ -45,7 +45,7 @@ public function testRepoNotFound(): void

$client
->repositories()
->workspaces('atlassian')
->workspaces('StyleCI')
->show('qwertyuiop');
}
}

0 comments on commit 1b94d59

Please sign in to comment.