@@ -15,7 +15,7 @@ import Testing
15
15
@testable import Valkey
16
16
17
17
#if DistributedTracingSupport
18
- import TracingTestKit
18
+ import InMemoryTracing
19
19
#endif
20
20
21
21
@Suite
@@ -497,7 +497,7 @@ struct ConnectionTests {
497
497
@Test
498
498
@available ( valkeySwift 1 . 0 , * )
499
499
func testSingleCommandSpan( ) async throws {
500
- let tracer = TestTracer ( )
500
+ let tracer = InMemoryTracer ( )
501
501
var config = ValkeyConnectionConfiguration ( )
502
502
config. tracing. tracer = tracer
503
503
@@ -534,7 +534,7 @@ struct ConnectionTests {
534
534
@Test
535
535
@available ( valkeySwift 1 . 0 , * )
536
536
func testSingleCommandFailureSpan( ) async throws {
537
- let tracer = TestTracer ( )
537
+ let tracer = InMemoryTracer ( )
538
538
var config = ValkeyConnectionConfiguration ( )
539
539
config. tracing. tracer = tracer
540
540
@@ -578,7 +578,7 @@ struct ConnectionTests {
578
578
@Test ( . disabled( " Pipeline support not implemented yet " ) )
579
579
@available ( valkeySwift 1 . 0 , * )
580
580
func testPipelinedSameCommandsSpan( ) async throws {
581
- let tracer = TestTracer ( )
581
+ let tracer = InMemoryTracer ( )
582
582
var config = ValkeyConnectionConfiguration ( )
583
583
config. tracing. tracer = tracer
584
584
@@ -621,7 +621,7 @@ struct ConnectionTests {
621
621
@Test ( . disabled( " Pipeline support not implemented yet " ) )
622
622
@available ( valkeySwift 1 . 0 , * )
623
623
func testPipelinedDifferentCommandsSpan( ) async throws {
624
- let tracer = TestTracer ( )
624
+ let tracer = InMemoryTracer ( )
625
625
var config = ValkeyConnectionConfiguration ( )
626
626
config. tracing. tracer = tracer
627
627
@@ -664,7 +664,7 @@ struct ConnectionTests {
664
664
@Test ( . disabled( " Pipeline support not implemented yet " ) )
665
665
@available ( valkeySwift 1 . 0 , * )
666
666
func testPipelinedCommandFailureSpan( ) async throws {
667
- let tracer = TestTracer ( )
667
+ let tracer = InMemoryTracer ( )
668
668
var config = ValkeyConnectionConfiguration ( )
669
669
config. tracing. tracer = tracer
670
670
0 commit comments