Skip to content

Commit

Permalink
Merge branch '1.1_maintenance' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Jan 30, 2023
2 parents 36f20d0 + a01ae0c commit 660697f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/GafferSceneTest/MeshSegmentsTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#
##########################################################################

import pathlib
import os
import unittest
import six

Expand All @@ -54,8 +54,7 @@ class MeshSegmentsTest( GafferSceneTest.SceneTestCase ) :
def testSampleFile( self ) :

r = GafferScene.SceneReader()
# /todo - remove str() when merging to main
r["fileName"].setValue( str( pathlib.Path( __file__ ).parent / "usdFiles" / "segmentTestMesh.usd" ) )
r["fileName"].setValue( os.path.join( os.path.dirname( __file__ ), "usdFiles", "segmentTestMesh.usd" ) )

f = GafferScene.PathFilter()
f["paths"].setValue( IECore.StringVectorData( [ "/plane" ] ) )
Expand Down

0 comments on commit 660697f

Please sign in to comment.