diff --git a/framework/default/ortoo-core/default/classes/utils/tests/StringUtilsTest.cls b/framework/default/ortoo-core/default/classes/utils/tests/StringUtilsTest.cls index a1a4f88303e..435ccb9b182 100644 --- a/framework/default/ortoo-core/default/classes/utils/tests/StringUtilsTest.cls +++ b/framework/default/ortoo-core/default/classes/utils/tests/StringUtilsTest.cls @@ -280,7 +280,7 @@ private without sharing class StringUtilsTest private static void convertListToDelimitedString_whenGivenAListOfObjectsAndADelimiter_willJoinThemWithTheDelimiter() // NOPMD: Test method name format { List originalList = new List{ 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, ',' );