From ba81720463c0caaedc01ce7e23c30d0ff0bf1325 Mon Sep 17 00:00:00 2001 From: Dan McGarry Date: Thu, 5 Dec 2024 14:13:51 -0800 Subject: [PATCH] Explicitly add required export arg --- test/lib/ufe/testContextOps.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/lib/ufe/testContextOps.py b/test/lib/ufe/testContextOps.py index 07c97d671c..44e35a520b 100644 --- a/test/lib/ufe/testContextOps.py +++ b/test/lib/ufe/testContextOps.py @@ -1901,7 +1901,9 @@ def testGeomCoponentAssignment(self): dagPath.extendToShape() with mayaUsd.lib.OpUndoItemList(): - mayaUsd.lib.PrimUpdaterManager.duplicate(cmds.ls(cubeXForm, long=True)[0], psPathStr) + mayaUsd.lib.PrimUpdaterManager.duplicate( + cmds.ls(cubeXForm, long=True)[0], psPathStr, + {'exportComponentTags': True}) topPath = ufe.PathString.path(psPathStr + ',/' + cubeXForm + "/" + "top") topItem = ufe.Hierarchy.createItem(topPath)