Skip to content

Commit

Permalink
feat(repeater): fix test
Browse files Browse the repository at this point in the history
closes #174
  • Loading branch information
ostridm committed Jun 17, 2024
1 parent e84e3ba commit 5872254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/SecTester.Repeater.Tests/RepeaterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void Dispose()
public async Task Start_DeploysItself()
{
// arrange
_bus.Deploy(null, Arg.Any<CancellationToken>()).Returns(Task.FromResult<string>(Id));
_bus.Deploy(Arg.Any<string?>(), Arg.Any<CancellationToken?>()).Returns(Task.FromResult<string>(Id));

// act
await _sut.Start();
Expand Down

0 comments on commit 5872254

Please sign in to comment.