Remove dependency on matchersUtil for test

This commit is contained in:
Nito Buendia
2022-03-16 23:00:27 +08:00
parent 00fd4a819f
commit faf210ab4c

View File

@@ -20,7 +20,7 @@ getJasmineRequireObj().toHaveSpyInteractions = function(j$) {
if (!j$.isObject_(actual)) { if (!j$.isObject_(actual)) {
throw new Error( throw new Error(
getErrorMsg( getErrorMsg(
'Expected a spy object, but got ' + matchersUtil.pp(actual) + '.' 'Expected a spy object, but got ' + typeof actual + '.'
) )
); );
} }