Skip to content

Commit 6e23043

Browse files
chubakuenoLuis Rivera
and
Luis Rivera
authored
DYN-8358 fix broken tests (#15918)
Co-authored-by: Luis Rivera <[email protected]>
1 parent b54e0d3 commit 6e23043

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/Engine/ProtoScript/Runners/LiveRunner.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1710,11 +1710,7 @@ private void SynchronizeInternal(GraphSyncData syncData)
17101710
var finalDeltaAstList = changeSetComputer.GetDeltaASTList(syncData);
17111711

17121712
//nodes which will be defined or redefined after compilation and execution
1713-
var pendingUIDsForDeletion = changeSetComputer.csData.DeletedBinaryExprASTNodes
1714-
.Select(x => (x as BinaryExpressionNode)?.guid)
1715-
.Where(x => x != null)
1716-
.Select(x => x.Value)
1717-
.ToHashSet();
1713+
var pendingUIDsForDeletion = syncData.DeletedNodeIDs.ToHashSet();
17181714

17191715
// Prior to execution, apply state modifications to the VM given the delta AST's
17201716
bool anyForcedExecutedNodes = changeSetComputer.csData.ForceExecuteASTList.Any();

0 commit comments

Comments
 (0)