@@ -258,20 +258,20 @@ public void UpdateAnalysisState_CriticalException_IsNotSuppressed()
258258 CreateTextChange ( "" , "" ) ,
259259 CreateTextChange ( "\r \n " , "\t \n SOMETEXT" ) ,
260260 ] ;
261- private static object [ ] [ ] OnTextBufferChangedOnBackground_UpdatesIfNotWhitespace_Params =>
261+ private static object [ ] [ ] OnTextBufferChangedOnBackground_Updates_Params =>
262262 [
263- [ EmptyAndWhitespaceChanges , false ] ,
264- [ NonEmptyChanges , true ]
263+ [ EmptyAndWhitespaceChanges ] ,
264+ [ NonEmptyChanges ]
265265 ] ;
266- [ DynamicData ( nameof ( OnTextBufferChangedOnBackground_UpdatesIfNotWhitespace_Params ) ) ]
266+ [ DynamicData ( nameof ( OnTextBufferChangedOnBackground_Updates_Params ) ) ]
267267 [ DataTestMethod ]
268- public void OnTextBufferChangedOnBackground_UpdatesIfNotWhitespace ( List < ITextChange > changes , bool didUpdate )
268+ public void OnTextBufferChangedOnBackground_Updates ( List < ITextChange > changes )
269269 {
270270 ClearMocks ( ) ;
271271 mockedJavascriptDocumentFooJs . TextBuffer . CurrentSnapshot . Version . Changes . Returns ( new TestableNormalizedTextChangeCollection ( changes ) ) ;
272272 RaiseTextBufferChangedOnBackground ( currentTextBuffer : mockDocumentTextBuffer , CreateTextSnapshotMock ( ) ) ;
273273
274- documentTrackerUpdater . Received ( didUpdate ? 1 : 0 ) . OnDocumentUpdated ( testSubject ) ;
274+ documentTrackerUpdater . Received ( 1 ) . OnDocumentUpdated ( testSubject ) ;
275275 VerifyMetadataNotUpdated ( ) ;
276276 VerifyIssueConsumerNotCreated ( ) ;
277277 VerifyIssueConsumerNotRemoved ( ) ;
0 commit comments