@@ -116,8 +116,8 @@ public void ShouldNotDeleteModelWhenNotSet()
116116 [ Fact ]
117117 public void ShouldNotUpdateUpdatedDateWhenCheckboxSet ( )
118118 {
119- var somewhen = new DateTime ( 1991 , 5 , 17 ) ;
120- var originalBlogPost = new BlogPostBuilder ( ) . WithUpdatedDate ( somewhen ) . Build ( ) ;
119+ var someWhen = new DateTime ( 1991 , 5 , 17 ) ;
120+ var originalBlogPost = new BlogPostBuilder ( ) . WithUpdatedDate ( someWhen ) . Build ( ) ;
121121 BlogPost blogPostFromComponent = null ;
122122 var cut = RenderComponent < CreateNewBlogPost > (
123123 p =>
@@ -132,7 +132,7 @@ public void ShouldNotUpdateUpdatedDateWhenCheckboxSet()
132132 cut . Find ( "#updatedate" ) . Change ( false ) ;
133133 cut . Find ( "form" ) . Submit ( ) ;
134134
135- blogPostFromComponent . UpdatedDate . Should ( ) . Be ( somewhen ) ;
135+ blogPostFromComponent . UpdatedDate . Should ( ) . Be ( someWhen ) ;
136136 }
137137
138138 [ Fact ]
@@ -171,7 +171,7 @@ public void ShouldAcceptInputWithoutLosingFocusOrEnter()
171171 blogPost . Tags . Select ( t => t . Content ) . Should ( ) . Contain ( new [ ] { "Tag1" , "Tag2" , "Tag3" } ) ;
172172 }
173173
174- [ Fact ( Skip = "Need bUnit > 1.9.8" ) ]
174+ [ Fact ]
175175 public void ShouldStopExternalNavigationWhenDirty ( )
176176 {
177177 var cut = RenderComponent < CreateNewBlogPost > ( ) ;
@@ -181,7 +181,7 @@ public void ShouldStopExternalNavigationWhenDirty()
181181 cut . FindComponent < NavigationLock > ( ) . Instance . ConfirmExternalNavigation . Should ( ) . BeTrue ( ) ;
182182 }
183183
184- [ Fact ( Skip = "Need bUnit > 1.9.8" ) ]
184+ [ Fact ]
185185 public void ShouldStopInternalNavigationWhenDirty ( )
186186 {
187187 var cut = RenderComponent < CreateNewBlogPost > ( ) ;
@@ -193,7 +193,7 @@ public void ShouldStopInternalNavigationWhenDirty()
193193 fakeNavigationManager . History . Count . Should ( ) . Be ( 1 ) ;
194194 }
195195
196- [ Fact ( Skip = "Need bUnit > 1.9.8" ) ]
196+ [ Fact ]
197197 public void ShouldNotPreventWhenToastIsClicked ( )
198198 {
199199 var toastMock = new Mock < IToastService > ( ) ;
0 commit comments