Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
parijke committed Feb 14, 2024
1 parent e0946b3 commit de724aa
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ class JiraServiceFactoryTest extends TestCase
public function test_build_issue_service()
{
$hostname = 'https://jira.example.com/';
$username = 'user';
$password = 'secret';
$factory = new JiraServiceFactory($hostname, $username, $password, m::mock(Logger::class));
$token = 'secret';
$factory = new JiraServiceFactory(
host: $hostname,
personalAccessToken: $token,
logger: m::mock(Logger::class));

$issueService = $factory->buildIssueService();

Expand Down

0 comments on commit de724aa

Please sign in to comment.