diff --git a/DuckDuckGo/Localizable.xcstrings b/DuckDuckGo/Localizable.xcstrings index 1c5b3e7f85..6720161f21 100644 --- a/DuckDuckGo/Localizable.xcstrings +++ b/DuckDuckGo/Localizable.xcstrings @@ -47609,7 +47609,6 @@ }, "pm.save-credentials.security.info" : { "comment" : "Info message for the save credentials dialog\n Info message for the save credentials dialog when the autolock feature is off", - "extractionState" : "extracted_with_value", "localizations" : { "de" : { "stringUnit" : { diff --git a/IntegrationTests/DataImport/CSVImporterIntegrationTests.swift b/IntegrationTests/DataImport/CSVImporterIntegrationTests.swift index ed6c187d24..58f3e0b664 100644 --- a/IntegrationTests/DataImport/CSVImporterIntegrationTests.swift +++ b/IntegrationTests/DataImport/CSVImporterIntegrationTests.swift @@ -23,14 +23,14 @@ import BrowserServicesKit final class CSVImporterIntegrationTests: XCTestCase { - override func setUpWithError() throws { + override func setUp() { super.setUp() - try clearDB() + try? clearDB() executionTimeAllowance = 10 } - override func tearDownWithError() throws { - try clearDB() + override func tearDown() { + try? clearDB() super.tearDown() } @@ -45,7 +45,7 @@ final class CSVImporterIntegrationTests: XCTestCase { } } - func _testImportPasswordsPerformance() async throws { + func testImportPasswordsPerformance() async throws { let csvURL = Bundle(for: Self.self).url(forResource: "mock_login_data_large", withExtension: "csv")! let csvImporter = CSVImporter( fileURL: csvURL, @@ -54,7 +54,7 @@ final class CSVImporterIntegrationTests: XCTestCase { ) let importTask = csvImporter.importData(types: [.passwords]) - // No baseline set, but should be no more than 0.3 seconds on an M1 Max with 32GB memory + // No baseline set, but should be no more than 0.5 seconds on an M1 Max with 32GB memory measureMetrics([.wallClockTime], automaticallyStartMeasuring: false) { let expectation = expectation(description: "Measure finished") Task { @@ -69,7 +69,7 @@ final class CSVImporterIntegrationTests: XCTestCase { } // Deduplication rules: https://app.asana.com/0/0/1207598052765977/f - func _testImportingPasswords_deduplicatesAccordingToDefinedRules() async throws { + func testImportingPasswords_deduplicatesAccordingToDefinedRules() async throws { let startingDataURL = Bundle(for: Self.self).url(forResource: "login_deduplication_starting_data", withExtension: "csv")! let startingDataImporter = CSVImporter( fileURL: startingDataURL,