Skip to content

Commit fab856e

Browse files
authored
Fix/tagging (#3)
* Update README.md * Update TemplateRendererTests.cs
1 parent 7f1c029 commit fab856e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ Also the following sections need to be added to the _appsettings.json_ file.
7676

7777
```
7878

79-
Then you can inject **INotificationService** to your classes to be able to send the email.
79+
Then you can inject **INotificationService** to your classes to send the email.
8080

8181
**Note:** Use Relay Messaging so there is no setup to be made on application servers to support smtp. Also the sender can be a fake email address or even a descriptive email address.

src/Easify.Notifications.Templating.UnitTests/TemplateRendererTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public async Task GivenTemplate_WhenCalling_RenderTemplateAsync_ShouldReturnCorr
3030
{
3131
// Arrange
3232
var model = new Model();
33-
3433
var templateProvider = Substitute.For<ITemplateProvider>();
3534
templateProvider.GetTemplateContentAsync(Arg.Any<string>()).Returns(Task.FromResult(template));
3635

@@ -54,4 +53,4 @@ private class Model
5453
public string Title { get; set; } = "RenderAsync";
5554
}
5655
}
57-
}
56+
}

0 commit comments

Comments
 (0)