diff --git a/Passepartout-CoreTests/InfrastructureTests.swift b/Passepartout-CoreTests/InfrastructureTests.swift index 6e4b873f..c0be2874 100644 --- a/Passepartout-CoreTests/InfrastructureTests.swift +++ b/Passepartout-CoreTests/InfrastructureTests.swift @@ -39,7 +39,7 @@ class InfrastructureTests: XCTestCase { func testParsing() { print(infra.pools) - XCTAssertEqual(infra.pools.count, 53) + XCTAssertEqual(infra.pools.count, 48) } func testIdentifier() { diff --git a/Passepartout/Sources/GroupConstants.swift b/Passepartout/Sources/GroupConstants.swift index b52bd0a3..ffb0c658 100644 --- a/Passepartout/Sources/GroupConstants.swift +++ b/Passepartout/Sources/GroupConstants.swift @@ -56,7 +56,8 @@ class GroupConstants { private static var containerURL: URL { guard let url = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: appGroup) else { - fatalError("Unable to access App Group container") + print("Unable to access App Group container") + return FileManager.default.userURL(for: .documentDirectory, appending: nil) } return url }