Skip to content

Commit

Permalink
MAYA114593 typos in comments in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrebai-adsk committed Feb 24, 2022
1 parent 1fc82ae commit 90dea26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions test/lib/ufe/testGroupCmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,8 @@ def testGroupPreserveLoadRules(self):
sphere3Prim = mayaUsd.ufe.ufePathToPrim(ufe.PathString.string(sphere3Path))

# Setup the load rules:
# /Props is unloaded
# /Props/Ball1 is loaded
# /Props/Ball2 has no rule, so is governed by /Props
# /Sphere1 is unloaded
# /Sphere2 is loaded
loadRules = stage.GetLoadRules()
loadRules.AddRule('/Sphere1', loadRules.NoneRule)
loadRules.AddRule('/Sphere2', loadRules.AllRule)
Expand Down
4 changes: 2 additions & 2 deletions test/lib/ufe/testRename.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def rename(sdfPath, newName):
self.assertEqual(loadRules.NoneRule, stage.GetLoadRules().GetEffectiveRuleForPath(ball2SdfRenamedPath))

# Undo both rename commands and re-verify load rules.
# Note: each renaming does slect + rename, so we need to undo four times.
# Note: each renaming does select + rename, so we need to undo four times.
cmds.undo()
cmds.undo()
cmds.undo()
Expand All @@ -377,7 +377,7 @@ def rename(sdfPath, newName):
self.assertEqual(loadRules.NoneRule, stage.GetLoadRules().GetEffectiveRuleForPath(ball2SdfPath))

# Redo both rename commands and re-verify load rules.
# Note: each renaming does slect + rename, so we need to redo four times.
# Note: each renaming does select + rename, so we need to redo four times.
cmds.redo()
cmds.redo()
cmds.redo()
Expand Down

0 comments on commit 90dea26

Please sign in to comment.