@@ -94,7 +94,7 @@ public void signalForwardsInboundLinksAndCapturesResponseBacklink() {
9494 Assert .assertEquals (inboundLink , sent .getLinks (0 ));
9595
9696 // Backward direction: the response's link is now on the context for the task handler to read.
97- List <Link > captured = nexusCtx .getSignalWorkflowResponseLinks ();
97+ List <Link > captured = nexusCtx .getBacklinks ();
9898 Assert .assertEquals ("expected one captured backlink" , 1 , captured .size ());
9999 Assert .assertEquals (responseLink , captured .get (0 ));
100100 }
@@ -125,7 +125,7 @@ public void signalAgainstOlderServerCapturesNoBacklink() {
125125 // Backward direction: no backlink captured because the server didn't send one.
126126 Assert .assertTrue (
127127 "expected no captured backlink when server returned no link" ,
128- nexusCtx .getSignalWorkflowResponseLinks ().isEmpty ());
128+ nexusCtx .getBacklinks ().isEmpty ());
129129 }
130130
131131 /**
@@ -146,7 +146,7 @@ public void multipleSignalsAccumulateAllBacklinks() {
146146 invoker .signal (newSignalInput ());
147147 invoker .signal (newSignalInput ());
148148
149- List <Link > captured = nexusCtx .getSignalWorkflowResponseLinks ();
149+ List <Link > captured = nexusCtx .getBacklinks ();
150150 Assert .assertEquals (
151151 "expected one backlink per signal call" ,
152152 Arrays .asList (firstResponseLink , secondResponseLink ),
0 commit comments