Skip to content

Commit e3cf28f

Browse files
committed
Fix for System.TypeException thrown on orgs that have Spring '16. Could be possible bug in release.
"System.TypeException: Collection store exception adding ktdev0.fflib_QueryFactory.InvalidFieldException to List<java.lang.Exception> Stack trace: Class.ktdev0.fflib_QueryFactoryTest.invalidFieldTests: line 115, column 1"
1 parent 7cdc713 commit e3cf28f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fflib/src/classes/fflib_QueryFactoryTest.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private class fflib_QueryFactoryTest {
108108

109109
@isTest
110110
static void invalidFieldTests(){
111-
List<Exception> exceptions = new List<Exception>();
111+
List<fflib_QueryFactory.InvalidFieldException> exceptions = new List<fflib_QueryFactory.InvalidFieldException>();
112112
fflib_QueryFactory qf = new fflib_QueryFactory(Contact.SObjectType);
113113
try{
114114
qf.selectField('Not_a_field');

0 commit comments

Comments
 (0)