From faf210ab4cd6015016ba74a2c96f83b3550937ba Mon Sep 17 00:00:00 2001 From: Nito Buendia Date: Wed, 16 Mar 2022 23:00:27 +0800 Subject: [PATCH] Remove dependency on matchersUtil for test --- src/core/matchers/toHaveSpyInteractions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/matchers/toHaveSpyInteractions.js b/src/core/matchers/toHaveSpyInteractions.js index 37bf5481..a6a5fdc9 100755 --- a/src/core/matchers/toHaveSpyInteractions.js +++ b/src/core/matchers/toHaveSpyInteractions.js @@ -20,7 +20,7 @@ getJasmineRequireObj().toHaveSpyInteractions = function(j$) { if (!j$.isObject_(actual)) { throw new Error( getErrorMsg( - 'Expected a spy object, but got ' + matchersUtil.pp(actual) + '.' + 'Expected a spy object, but got ' + typeof actual + '.' ) ); }