@@ -15,7 +15,7 @@ import Testing
1515@testable import Valkey
1616
1717#if DistributedTracingSupport
18- import TracingTestKit
18+ import InMemoryTracing
1919#endif
2020
2121@Suite
@@ -497,7 +497,7 @@ struct ConnectionTests {
497497 @Test
498498 @available ( valkeySwift 1 . 0 , * )
499499 func testSingleCommandSpan( ) async throws {
500- let tracer = TestTracer ( )
500+ let tracer = InMemoryTracer ( )
501501 var config = ValkeyConnectionConfiguration ( )
502502 config. tracing. tracer = tracer
503503
@@ -534,7 +534,7 @@ struct ConnectionTests {
534534 @Test
535535 @available ( valkeySwift 1 . 0 , * )
536536 func testSingleCommandFailureSpan( ) async throws {
537- let tracer = TestTracer ( )
537+ let tracer = InMemoryTracer ( )
538538 var config = ValkeyConnectionConfiguration ( )
539539 config. tracing. tracer = tracer
540540
@@ -578,7 +578,7 @@ struct ConnectionTests {
578578 @Test ( . disabled( " Pipeline support not implemented yet " ) )
579579 @available ( valkeySwift 1 . 0 , * )
580580 func testPipelinedSameCommandsSpan( ) async throws {
581- let tracer = TestTracer ( )
581+ let tracer = InMemoryTracer ( )
582582 var config = ValkeyConnectionConfiguration ( )
583583 config. tracing. tracer = tracer
584584
@@ -621,7 +621,7 @@ struct ConnectionTests {
621621 @Test ( . disabled( " Pipeline support not implemented yet " ) )
622622 @available ( valkeySwift 1 . 0 , * )
623623 func testPipelinedDifferentCommandsSpan( ) async throws {
624- let tracer = TestTracer ( )
624+ let tracer = InMemoryTracer ( )
625625 var config = ValkeyConnectionConfiguration ( )
626626 config. tracing. tracer = tracer
627627
@@ -664,7 +664,7 @@ struct ConnectionTests {
664664 @Test ( . disabled( " Pipeline support not implemented yet " ) )
665665 @available ( valkeySwift 1 . 0 , * )
666666 func testPipelinedCommandFailureSpan( ) async throws {
667- let tracer = TestTracer ( )
667+ let tracer = InMemoryTracer ( )
668668 var config = ValkeyConnectionConfiguration ( )
669669 config. tracing. tracer = tracer
670670
0 commit comments