Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroservienti committed Jun 1, 2020
1 parent ec5018b commit 465da09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MySystem.AcceptanceTests/When_sending_AMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public async Task AReplyMessage_is_received_and_ASaga_is_started()

Assert.True(invokedSaga.IsNew);
Assert.AreEqual("MyService", invokedSaga.EndpointName);
Assert.True(((ASagaData)invokedSaga.SagaData).SomeId == expectedSomeId);
Assert.True(((ASagaData)invokedSaga.SagaData).SomeId == theExpectedSagaId);
Assert.False(context.HasFailedMessages());
Assert.False(context.HasHandlingErrors());
}
Expand Down

0 comments on commit 465da09

Please sign in to comment.