Skip to content

Commit

Permalink
Addressed fuzz testing issues, see phetsims/circuit-construction-kit-…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 26, 2017
1 parent c410c50 commit 98f1b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/view/CircuitLayerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ define( function( require ) {
fixSolderLayeringForVertex: function( vertex ) {

// make sure the vertex didn't already get removed (like in fuzz testing)
if ( self.mainLayer.indexOfChild( vertex ) >= 0 ) {
if ( this.mainLayer.indexOfChild( vertex ) >= 0 ) {
var self = this;

var solderNode = this.getSolderNode( vertex );
Expand Down

0 comments on commit 98f1b8c

Please sign in to comment.