Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion force-app/main/default/classes/DML_Test.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,7 @@ private class DML_Test {
account1.Name = 'Updated Test Account';
opportunity1.Name = 'Updated Test Opportunity';
lead1.FirstName = 'Updated Test';
lead1.Company = 'Updated Test Lead 1';

DML.Result result = new DML()
.toUpdate(account1)
Expand Down Expand Up @@ -6200,7 +6201,7 @@ private class DML_Test {
}

static Lead getLead(Integer index) {
return new Lead(FirstName = 'Test ' + index, LastName = 'Lead ' + index, Company = 'Test Company ' + index);
return new Lead(FirstName = 'Test ' + index, LastName = 'Lead ' + index, Company = 'Test ' + index + ' Lead ' + index);
}

static Case getCase(Integer index) {
Expand Down