File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/Grpc.IntegrationTests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ public async Task PurgeInstance_EndToEnd()
179179 // Assert
180180 result . Should ( ) . NotBeNull ( ) ;
181181 result . PurgedInstanceCount . Should ( ) . Be ( 1 ) ;
182- result . IsComplete . Should ( ) . BeNull ( ) ;
182+ result . IsComplete . Should ( ) . NotBeFalse ( ) ;
183183 // Verify instance no longer exists
184184 OrchestrationMetadata ? instance = await server . Client . GetInstanceAsync ( instanceId , false ) ;
185185 instance . Should ( ) . BeNull ( ) ;
@@ -215,7 +215,7 @@ public async Task PurgeInstances_WithFilter_EndToEnd()
215215 // Assert
216216 result . Should ( ) . NotBeNull ( ) ;
217217 result . PurgedInstanceCount . Should ( ) . BeGreaterThan ( 3 ) ;
218- result . IsComplete . Should ( ) . BeNull ( ) ;
218+ result . IsComplete . Should ( ) . NotBeFalse ( ) ;
219219 // Verify instances no longer exist
220220 foreach ( string instanceId in instanceIds )
221221 {
You can’t perform that action at this time.
0 commit comments