From 1e83b86f76b3e59113e4695c866519050c1b30bd Mon Sep 17 00:00:00 2001 From: Jeff Ward Date: Wed, 15 Feb 2023 09:00:12 -0500 Subject: [PATCH] Fix test compilation --- .../Datadog/RUM/RUMMonitor/Scopes/RUMViewScopeTests.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/DatadogTests/Datadog/RUM/RUMMonitor/Scopes/RUMViewScopeTests.swift b/Tests/DatadogTests/Datadog/RUM/RUMMonitor/Scopes/RUMViewScopeTests.swift index b211101be2..2c394091aa 100644 --- a/Tests/DatadogTests/Datadog/RUM/RUMMonitor/Scopes/RUMViewScopeTests.swift +++ b/Tests/DatadogTests/Datadog/RUM/RUMMonitor/Scopes/RUMViewScopeTests.swift @@ -105,7 +105,7 @@ class RUMViewScopeTests: XCTestCase { ) // When - scope.process( + _ = scope.process( command: RUMApplicationStartCommand(time: currentTime, attributes: [:]), context: customContext, writer: writer @@ -135,7 +135,7 @@ class RUMViewScopeTests: XCTestCase { ) // When - scope.process( + _ = scope.process( command: RUMApplicationStartCommand(time: date, attributes: [:]), context: context, writer: writer @@ -164,7 +164,7 @@ class RUMViewScopeTests: XCTestCase { ) // When - scope.process( + _ = scope.process( command: RUMApplicationStartCommand(time: date, attributes: [:]), context: context, writer: writer @@ -196,7 +196,7 @@ class RUMViewScopeTests: XCTestCase { startTime: currentTime, serverTimeOffset: .zero ) - scope.process( + _ = qscope.process( command: RUMApplicationStartCommand(time: currentTime, attributes: [:]), context: context, writer: writer