From ae466970708fc555dbf2130c283d55667f0daa7f Mon Sep 17 00:00:00 2001 From: stechiu Date: Tue, 17 Dec 2024 12:43:04 -0800 Subject: [PATCH] Removed unnecessary unit tests --- .../BTShopperInsightsClient_Tests.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/UnitTests/BraintreeShopperInsightsTests/BTShopperInsightsClient_Tests.swift b/UnitTests/BraintreeShopperInsightsTests/BTShopperInsightsClient_Tests.swift index 413598691..bdaaa11d1 100644 --- a/UnitTests/BraintreeShopperInsightsTests/BTShopperInsightsClient_Tests.swift +++ b/UnitTests/BraintreeShopperInsightsTests/BTShopperInsightsClient_Tests.swift @@ -237,12 +237,6 @@ class BTShopperInsightsClient_Tests: XCTestCase { sut.sendSelectedEvent(for: .venmo) XCTAssertEqual(mockAPIClient.postedAnalyticsEvents.first, "shopper-insights:button-selected") XCTAssertEqual(mockAPIClient.postedButtonType, "Venmo") - } - - func testShopperInsightsClient_withSessionID_setSessionIDInMetadata() { - sut = BTShopperInsightsClient(apiClient: mockAPIClient, shopperSessionID: "123456") - XCTAssertEqual(mockAPIClient.metadata.sessionID, "123456") - XCTAssertEqual(mockAPIClient.postedAnalyticsEvents.first, "shopper-insights:button-selected") XCTAssertEqual(mockAPIClient.postedShopperSessionID, "fake-shopper-session-id") }