Skip to content

Commit

Permalink
Update BulkLoaderUpdateRecordsTest.php
Browse files Browse the repository at this point in the history
Zero skipped records in test
  • Loading branch information
AntonyThorpe committed Jun 16, 2024
1 parent ffa03ef commit 7a5e354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/BulkLoaderUpdateRecordsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public function testUpdateRecordsWhenDataobjectExtendsPage(): void
$this->assertEquals($results->CreatedCount(), 0);
$this->assertEquals($results->UpdatedCount(), 2);
$this->assertEquals($results->DeletedCount(), 0);
$this->assertEquals($results->SkippedCount(), 2);
$this->assertEquals($results->SkippedCount(), 0);
$this->assertEquals($results->Count(), 2);

$this->assertStringContainsString(
Expand Down

0 comments on commit 7a5e354

Please sign in to comment.