Skip to content

Commit

Permalink
Merge pull request #5919 from ericmehl/lightEditorTestFix
Browse files Browse the repository at this point in the history
LightEditorTest Fix
  • Loading branch information
murraystevenson authored Jun 24, 2024
2 parents a53fec6 + 2bd0189 commit e5a5ca1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/GafferSceneUITest/LightEditorTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ def testDeregisterColumn( self ) :

columnNames = [ c.headerData().value for c in widget.getColumns() ]
self.assertNotIn( "P", columnNames )
self.assertNotIn( "P.X", columnNames )
self.assertNotIn( "X", columnNames )
self.assertNotIn( "A", columnNames )
self.assertIn( "Y", columnNames )
self.assertIn( "Z", columnNames )
Expand All @@ -846,7 +846,7 @@ def testDeregisterColumn( self ) :

columnNames = [ c.headerData().value for c in widget.getColumns() ]
self.assertNotIn( "P", columnNames )
self.assertNotIn( "P.X", columnNames )
self.assertNotIn( "X", columnNames )
self.assertNotIn( "A", columnNames )
self.assertNotIn( "Y", columnNames )
self.assertIn( "Z", columnNames )
Expand All @@ -858,7 +858,7 @@ def testDeregisterColumn( self ) :

columnNames = [ c.headerData().value for c in widget.getColumns() ]
self.assertNotIn( "P", columnNames )
self.assertNotIn( "P.X", columnNames )
self.assertNotIn( "X", columnNames )
self.assertNotIn( "A", columnNames )
self.assertNotIn( "Y", columnNames )
self.assertNotIn( "Z", columnNames )
Expand Down

0 comments on commit e5a5ca1

Please sign in to comment.