Skip to content

Commit

Permalink
TESTCLASS ALR-134
Browse files Browse the repository at this point in the history
  • Loading branch information
Keerthana9894 committed Jul 12, 2024
1 parent f2adeb7 commit 5893bb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/default/classes/ChangeAccountOwnerTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private class ChangeAccountOwnerTest {
Test.stopTest();

Account updatedAccount = [SELECT Id, OwnerId FROM Account WHERE Id = :acc.Id];
System.assertEquals(false, updatedAccount.OwnerId == (newUser.Id), 'Account Owner should have been updated');
System.assertEquals(newUser.Id, updatedAccount.OwnerId, 'Account Owner should have been updated');

}
}

0 comments on commit 5893bb1

Please sign in to comment.