@@ -43,7 +43,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
43
43
44
44
httpResponse . Headers . ETag . ShouldNotBeNull ( ) ;
45
45
httpResponse . Headers . ETag . IsWeak . Should ( ) . BeFalse ( ) ;
46
- httpResponse . Headers . ETag . Tag . ShouldNotBeNullOrEmpty ( ) ;
46
+ httpResponse . Headers . ETag . Tag . Should ( ) . NotBeNullOrEmpty ( ) ;
47
47
48
48
responseDocument . Should ( ) . BeEmpty ( ) ;
49
49
}
@@ -71,7 +71,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
71
71
72
72
httpResponse . Headers . ETag . ShouldNotBeNull ( ) ;
73
73
httpResponse . Headers . ETag . IsWeak . Should ( ) . BeFalse ( ) ;
74
- httpResponse . Headers . ETag . Tag . ShouldNotBeNullOrEmpty ( ) ;
74
+ httpResponse . Headers . ETag . Tag . Should ( ) . NotBeNullOrEmpty ( ) ;
75
75
76
76
responseDocument . Should ( ) . NotBeEmpty ( ) ;
77
77
}
@@ -202,7 +202,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
202
202
203
203
httpResponse2 . Headers . ETag . ShouldNotBeNull ( ) ;
204
204
httpResponse2 . Headers . ETag . IsWeak . Should ( ) . BeFalse ( ) ;
205
- httpResponse2 . Headers . ETag . Tag . ShouldNotBeNullOrEmpty ( ) ;
205
+ httpResponse2 . Headers . ETag . Tag . Should ( ) . NotBeNullOrEmpty ( ) ;
206
206
207
207
responseDocument2 . Should ( ) . BeEmpty ( ) ;
208
208
}
@@ -232,7 +232,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
232
232
233
233
httpResponse . Headers . ETag . ShouldNotBeNull ( ) ;
234
234
httpResponse . Headers . ETag . IsWeak . Should ( ) . BeFalse ( ) ;
235
- httpResponse . Headers . ETag . Tag . ShouldNotBeNullOrEmpty ( ) ;
235
+ httpResponse . Headers . ETag . Tag . Should ( ) . NotBeNullOrEmpty ( ) ;
236
236
237
237
responseDocument . Should ( ) . NotBeEmpty ( ) ;
238
238
}
0 commit comments