File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/LinkDotNet.Blog.IntegrationTests/Web/Features Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ public BlogPostPublisherTests()
26
26
public async Task ShouldPublishScheduledBlogPosts ( )
27
27
{
28
28
var now = DateTime . Now ;
29
- var bp1 = new BlogPostBuilder ( ) . WithScheduledPublishDate ( now . AddHours ( - 2 ) ) . IsPublished ( false ) . Build ( ) ;
30
- var bp2 = new BlogPostBuilder ( ) . WithScheduledPublishDate ( now . AddHours ( - 1 ) ) . IsPublished ( false ) . Build ( ) ;
31
- var bp3 = new BlogPostBuilder ( ) . WithScheduledPublishDate ( now . AddHours ( 1 ) ) . IsPublished ( false ) . Build ( ) ;
29
+ var bp1 = new BlogPostBuilder ( ) . WithScheduledPublishDate ( now . AddHours ( - 3 ) ) . IsPublished ( false ) . Build ( ) ;
30
+ var bp2 = new BlogPostBuilder ( ) . WithScheduledPublishDate ( now . AddHours ( - 2 ) ) . IsPublished ( false ) . Build ( ) ;
31
+ var bp3 = new BlogPostBuilder ( ) . WithScheduledPublishDate ( now . AddHours ( 2 ) ) . IsPublished ( false ) . Build ( ) ;
32
32
await Repository . StoreAsync ( bp1 ) ;
33
33
await Repository . StoreAsync ( bp2 ) ;
34
34
await Repository . StoreAsync ( bp3 ) ;
You can’t perform that action at this time.
0 commit comments