@@ -132,22 +132,6 @@ async fn u64_histogram_is_exported() {
132
132
exporter. export ( ) . unwrap ( ) ;
133
133
}
134
134
135
- #[ tokio:: test]
136
- async fn i64_histogram_is_exported ( ) {
137
- let ( subscriber, exporter) = init_subscriber (
138
- "abcdefg_auenatsou" . to_string ( ) ,
139
- InstrumentKind :: Histogram ,
140
- -19_i64 ,
141
- None ,
142
- ) ;
143
-
144
- tracing:: subscriber:: with_default ( subscriber, || {
145
- tracing:: info!( histogram. abcdefg_auenatsou = -19_i64 ) ;
146
- } ) ;
147
-
148
- exporter. export ( ) . unwrap ( ) ;
149
- }
150
-
151
135
#[ tokio:: test]
152
136
async fn f64_histogram_is_exported ( ) {
153
137
let ( subscriber, exporter) = init_subscriber (
@@ -324,38 +308,6 @@ async fn u64_histogram_with_attributes_is_exported() {
324
308
exporter. export ( ) . unwrap ( ) ;
325
309
}
326
310
327
- #[ tokio:: test]
328
- async fn i64_histogram_with_attributes_is_exported ( ) {
329
- let ( subscriber, exporter) = init_subscriber (
330
- "hello_world" . to_string ( ) ,
331
- InstrumentKind :: Histogram ,
332
- -1_i64 ,
333
- Some ( AttributeSet :: from (
334
- [
335
- KeyValue :: new ( "u64_key_1" , 1_i64 ) ,
336
- KeyValue :: new ( "i64_key_1" , 2_i64 ) ,
337
- KeyValue :: new ( "f64_key_1" , 3_f64 ) ,
338
- KeyValue :: new ( "str_key_1" , "foo" ) ,
339
- KeyValue :: new ( "bool_key_1" , true ) ,
340
- ]
341
- . as_slice ( ) ,
342
- ) ) ,
343
- ) ;
344
-
345
- tracing:: subscriber:: with_default ( subscriber, || {
346
- tracing:: info!(
347
- histogram. hello_world = -1_i64 ,
348
- u64_key_1 = 1_u64 ,
349
- i64_key_1 = 2_i64 ,
350
- f64_key_1 = 3_f64 ,
351
- str_key_1 = "foo" ,
352
- bool_key_1 = true ,
353
- ) ;
354
- } ) ;
355
-
356
- exporter. export ( ) . unwrap ( ) ;
357
- }
358
-
359
311
#[ tokio:: test]
360
312
async fn f64_histogram_with_attributes_is_exported ( ) {
361
313
let ( subscriber, exporter) = init_subscriber (
0 commit comments