@@ -32,7 +32,7 @@ public LanguageServerConfigurationTests(ITestOutputHelper outputHelper) : base(n
3232 {
3333 }
3434
35- [ RetryFact ]
35+ [ Fact ]
3636 public async Task Should_Not_Support_Configuration_It_Not_Configured ( )
3737 {
3838 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , o => { } ) ;
@@ -46,7 +46,7 @@ public async Task Should_Not_Support_Configuration_It_Not_Configured()
4646 server . Configuration . AsEnumerable ( ) . Should ( ) . BeEmpty ( ) ;
4747 }
4848
49- [ RetryFact ]
49+ [ Fact ]
5050 public async Task Should_Allow_Null_Response ( )
5151 {
5252 var ( client , server ) = await Initialize (
@@ -60,7 +60,7 @@ public async Task Should_Allow_Null_Response()
6060 a . Should ( ) . NotThrow ( ) ;
6161 }
6262
63- [ RetryFact ]
63+ [ Fact ]
6464 public async Task Should_Update_Configuration_On_Server ( )
6565 {
6666 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -75,7 +75,7 @@ public async Task Should_Update_Configuration_On_Server()
7575 server . Configuration [ "othersection:value" ] . Should ( ) . Be ( "key" ) ;
7676 }
7777
78- [ RetryFact ]
78+ [ Fact ]
7979 public async Task Should_Update_Configuration_On_Server_After_Starting ( )
8080 {
8181 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , options => { } ) ;
@@ -91,7 +91,7 @@ public async Task Should_Update_Configuration_On_Server_After_Starting()
9191 server . Configuration [ "othersection:value" ] . Should ( ) . Be ( "key" ) ;
9292 }
9393
94- [ RetryFact ]
94+ [ Fact ]
9595 public async Task Should_Update_Configuration_Should_Stop_Watching_Sections ( )
9696 {
9797 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -113,7 +113,7 @@ public async Task Should_Update_Configuration_Should_Stop_Watching_Sections()
113113 server . Configuration [ "othersection:value" ] . Should ( ) . BeNull ( ) ;
114114 }
115115
116- [ RetryFact ]
116+ [ Fact ]
117117 public async Task Should_Update_Scoped_Configuration ( )
118118 {
119119 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -135,7 +135,7 @@ public async Task Should_Update_Scoped_Configuration()
135135 scopedConfiguration [ "othersection:value" ] . Should ( ) . Be ( "scopedkey" ) ;
136136 }
137137
138- [ RetryFact ]
138+ [ Fact ]
139139 public async Task Should_Fallback_To_Original_Configuration ( )
140140 {
141141 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -167,7 +167,7 @@ public async Task Should_Fallback_To_Original_Configuration()
167167 scopedConfiguration [ "othersection:value" ] . Should ( ) . Be ( "key" ) ;
168168 }
169169
170- [ RetryFact ]
170+ [ Fact ]
171171 public async Task Should_Only_Update_Configuration_Items_That_Are_Defined ( )
172172 {
173173 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -185,7 +185,7 @@ public async Task Should_Only_Update_Configuration_Items_That_Are_Defined()
185185 server . Configuration [ "notmysection:key" ] . Should ( ) . BeNull ( ) ;
186186 }
187187
188- [ RetryFact ]
188+ [ Fact ]
189189 public async Task Should_Support_Configuration_Binding ( )
190190 {
191191 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , ConfigureServer ) ;
@@ -209,7 +209,7 @@ public async Task Should_Support_Configuration_Binding()
209209 data . Port . Should ( ) . Be ( 80 ) ;
210210 }
211211
212- [ RetryFact ]
212+ [ Fact ]
213213 public async Task Should_Support_Options ( )
214214 {
215215 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , options => {
@@ -234,7 +234,7 @@ public async Task Should_Support_Options()
234234 options . Value . Port . Should ( ) . Be ( 443 ) ;
235235 }
236236
237- [ RetryFact ]
237+ [ Fact ]
238238 public async Task Should_Support_Options_Monitor ( )
239239 {
240240 var ( _, server , configuration ) = await InitializeWithConfiguration ( ConfigureClient , options => {
0 commit comments