Skip to content
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.

Commit

Permalink
Update method in ApplicationStatusTest
Browse files Browse the repository at this point in the history
The test method in ApplicationStatusTest.php has been updated from checking if the application status is local to checking if it is a subscription. This change will ensure that the unit tests are accurately reflecting the application's subscription status.

Signed-off-by: mesilov <[email protected]>
  • Loading branch information
mesilov committed Jul 6, 2024
1 parent c8612c9 commit e4e36a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Application/ApplicationStatusTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function testLocal(): void

public function testSubscription(): void
{
$this->assertTrue(ApplicationStatus::subscription()->isLocal());
$this->assertTrue(ApplicationStatus::subscription()->isSubscription());
}

/**
Expand Down

0 comments on commit e4e36a8

Please sign in to comment.