Skip to content

Commit a4eee3c

Browse files
committed
Fix OrchestrationFailureExceptionTests compilation errors
1 parent e9a9c19 commit a4eee3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Unit/Durable/OrchestrationFailureExceptionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class OrchestrationFailureExceptionTests
2020
[Fact]
2121
public void MessageContainsInnerExceptionMessage()
2222
{
23-
var e = new OrchestrationFailureException(new List<List<OrchestrationAction>>(), _innerException);
23+
var e = new OrchestrationFailureException(new List<List<OrchestrationAction>>(), customStatus: null, _innerException);
2424

2525
var labelPos = e.Message.IndexOf(OrchestrationFailureException.OutOfProcDataLabel);
2626
Assert.Equal(_innerException.Message, e.Message.Substring(0, labelPos));
@@ -36,7 +36,7 @@ public void MessageContainsSerializedOrchestrationMessage()
3636
}
3737
};
3838

39-
var e = new OrchestrationFailureException(actions, _innerException);
39+
var e = new OrchestrationFailureException(actions, customStatus: null, _innerException);
4040

4141
var labelPos = e.Message.IndexOf(OrchestrationFailureException.OutOfProcDataLabel);
4242
var startPos = labelPos + OrchestrationFailureException.OutOfProcDataLabel.Length;

0 commit comments

Comments
 (0)