From 337e221c206322a81346ef94c8dc4999cad18d0e Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Sat, 12 Nov 2022 19:36:22 -0800 Subject: [PATCH] Resolve build failure when running tests from Xcode. The build failure was: ``` MastodonTests/MastodonTests.swift:39:27: error build: Cannot find 'AppContext' in scope ``` --- MastodonTests/MastodonTests.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MastodonTests/MastodonTests.swift b/MastodonTests/MastodonTests.swift index 7264dde64..ec572fd92 100644 --- a/MastodonTests/MastodonTests.swift +++ b/MastodonTests/MastodonTests.swift @@ -7,6 +7,7 @@ import XCTest @testable import Mastodon +import MastodonCore @MainActor class MastodonTests: XCTestCase {