Skip to content

Commit

Permalink
Corrected test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-baillie-ortoo committed Apr 19, 2022
1 parent 88d1827 commit 04d8b4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ private without sharing class StackTraceTest
{
Test.startTest();
StackTrace.StackTraceEntry trace = new StackTrace.StackTraceEntry( 'Class.AClass.aMethod: line 7, column 1' );
String got = String.valueOf( trace );
String got = trace.toString();
Test.stopTest();

System.assertEquals( 'Class.AClass.aMethod: line 7, column 1', got, 'isValid, when the stack entry has text, will return true' );
Expand Down

0 comments on commit 04d8b4b

Please sign in to comment.