Skip to content

Commit

Permalink
Fixed the failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-baillie-ortoo committed Dec 1, 2021
1 parent 7d328de commit ae2dee9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ private without sharing class StringUtilsTest
private static void convertListToDelimitedString_whenGivenAListOfObjectsAndADelimiter_willJoinThemWithTheDelimiter() // NOPMD: Test method name format
{
List<Object> originalList = new List<Object>{ new StringableThing( 'one' ), new StringableThing( 'two' ), new StringableThing( 'three' ) };
String expectedString = 'one,two,three,purposefulfail';
String expectedString = 'one,two,three';

Test.startTest();
String returnedString = StringUtils.convertListToDelimitedString( originalList, ',' );
Expand Down

0 comments on commit ae2dee9

Please sign in to comment.