@@ -28,7 +28,7 @@ namespace MongoDB.Driver.Tests.Jira
28
28
public class CSharp3915Tests : Linq3IntegrationTest
29
29
{
30
30
// this example is from: https://www.mongodb.com/docs/v5.2/reference/operator/aggregation/densify
31
- [ Theory ]
31
+ [ SkippableTheory ]
32
32
[ InlineData ( false ) ]
33
33
[ InlineData ( true ) ]
34
34
public void Densify_time_series_data_example_using_aggregate_should_work ( bool usingExpressions )
@@ -76,7 +76,7 @@ public void Densify_time_series_data_example_using_aggregate_should_work(bool us
76
76
}
77
77
78
78
// this example is from: https://www.mongodb.com/docs/v5.2/reference/operator/aggregation/densify
79
- [ Fact ]
79
+ [ SkippableFact ]
80
80
public void Densify_time_series_data_example_using_linq_should_work ( )
81
81
{
82
82
RequireServer . Check ( ) . Supports ( Feature . DensifyStage ) ;
@@ -112,7 +112,7 @@ public void Densify_time_series_data_example_using_linq_should_work()
112
112
}
113
113
114
114
// this example is from: https://www.mongodb.com/docs/v5.2/reference/operator/aggregation/densify
115
- [ Theory ]
115
+ [ SkippableTheory ]
116
116
[ InlineData ( false ) ]
117
117
[ InlineData ( true ) ]
118
118
public void Densify_the_full_range_of_values_example_using_aggregate_should_work ( bool usingExpressions )
@@ -164,7 +164,7 @@ public void Densify_the_full_range_of_values_example_using_aggregate_should_work
164
164
}
165
165
166
166
// this example is from: https://www.mongodb.com/docs/v5.2/reference/operator/aggregation/densify
167
- [ Fact ]
167
+ [ SkippableFact ]
168
168
public void Densify_the_full_range_of_values_example_using_linq_should_work ( )
169
169
{
170
170
RequireServer . Check ( ) . Supports ( Feature . DensifyStage ) ;
@@ -203,7 +203,7 @@ public void Densify_the_full_range_of_values_example_using_linq_should_work()
203
203
}
204
204
205
205
// this example is from: https://www.mongodb.com/docs/v5.2/reference/operator/aggregation/densify
206
- [ Theory ]
206
+ [ SkippableTheory ]
207
207
[ InlineData ( false ) ]
208
208
[ InlineData ( true ) ]
209
209
public void Densify_values_within_each_partition_example_using_aggregate_should_work ( bool usingExpressions )
@@ -247,7 +247,7 @@ public void Densify_values_within_each_partition_example_using_aggregate_should_
247
247
}
248
248
249
249
// this example is from: https://www.mongodb.com/docs/v5.2/reference/operator/aggregation/densify
250
- [ Fact ]
250
+ [ SkippableFact ]
251
251
public void Densify_values_within_each_partition_example_using_linq_should_work ( )
252
252
{
253
253
RequireServer . Check ( ) . Supports ( Feature . DensifyStage ) ;
0 commit comments