From 0e0bd0586b77dd1ea95fa5881a788d8697101f7e Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 21 Feb 2022 19:29:32 -0500 Subject: [PATCH] Update `assignProps` call in `createUnsavedDataObject()` --- test/content/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/content/support.js b/test/content/support.js index bbab33c7b0..c2d3eb867f 100644 --- a/test/content/support.js +++ b/test/content/support.js @@ -475,7 +475,7 @@ function createUnsavedDataObject(objectType, params = {}) { obj.addCondition('title', 'isNot', Zotero.Utilities.randomString()); } - Zotero.Utilities.assignProps(obj, params, allowedParams); + Zotero.Utilities.Internal.assignProps(obj, params, allowedParams); return obj; }