diff --git a/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGoVPN.xcscheme b/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGoVPN.xcscheme index b8dc254e10..f57ea8cf9f 100644 --- a/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGoVPN.xcscheme +++ b/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGoVPN.xcscheme @@ -33,7 +33,7 @@ buildConfiguration = "Debug" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" - launchStyle = "0" + launchStyle = "1" useCustomWorkingDirectory = "NO" ignoresPersistentStateOnLaunch = "NO" debugDocumentVersioning = "YES" diff --git a/UnitTests/Menus/MoreOptionsMenuTests.swift b/UnitTests/Menus/MoreOptionsMenuTests.swift index 18973b356f..7cf4b36222 100644 --- a/UnitTests/Menus/MoreOptionsMenuTests.swift +++ b/UnitTests/Menus/MoreOptionsMenuTests.swift @@ -190,6 +190,10 @@ final class NetworkProtectionVisibilityMock: NetworkProtectionFeatureVisibility return visible } + func isFeatureEnabled() async throws -> Bool { + return false + } + func disableForAllUsers() async { // intentional no-op }