File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,7 @@ public async Task TextNegative()
205
205
await Verify ( exception . Message ) ;
206
206
}
207
207
208
+ #if( DEBUG )
208
209
[ Fact ]
209
210
public async Task AutoVerifyDifferent ( )
210
211
{
@@ -216,6 +217,7 @@ public async Task AutoVerifyDifferent()
216
217
settings . AutoVerify ( ) ;
217
218
settings . UniqueForRuntime ( ) ;
218
219
await Verify ( "content" , settings ) ;
220
+ Assert . False ( File . Exists ( received ) , received ) ;
219
221
Assert . True ( File . Exists ( verified ) , verified ) ;
220
222
}
221
223
@@ -230,8 +232,10 @@ public async Task AutoVerifyMissing()
230
232
settings . AutoVerify ( ) ;
231
233
settings . UniqueForRuntime ( ) ;
232
234
await Verify ( "content" , settings ) ;
235
+ Assert . False ( File . Exists ( received ) , received ) ;
233
236
Assert . True ( File . Exists ( verified ) , verified ) ;
234
237
}
238
+ #endif
235
239
236
240
[ Fact ]
237
241
public async Task WithExistingReceived ( )
You can’t perform that action at this time.
0 commit comments