Renamed skip to offset

This commit is contained in:
Constantin Graf
2024-10-01 15:38:24 +02:00
committed by Gregor Vostrak
parent d200de54a8
commit fcba96fbf6
3 changed files with 6 additions and 6 deletions

View File

@@ -468,7 +468,7 @@ class TimeEntryEndpointTest extends ApiEndpointTestAbstract
);
}
public function test_index_endpoint_with_limit_skip_and_only_full_dates_deactivated(): void
public function test_index_endpoint_with_limit_offset_and_only_full_dates_deactivated(): void
{
// Arrange
$data = $this->createUserWithPermission([
@@ -494,7 +494,7 @@ class TimeEntryEndpointTest extends ApiEndpointTestAbstract
'member_id' => $data->member->getKey(),
'project_ids' => [$project1->getKey()],
'limit' => 1,
'skip' => 1,
'offset' => 1,
'only_full_dates' => 'false',
]));