@@ -7195,7 +7195,7 @@ final class WorkspaceTests: XCTestCase {
7195
7195
customManifestLoader: TestLoader ( error: . none) ,
7196
7196
delegate: delegate
7197
7197
)
7198
- try workspace. loadPackageGraph ( rootPath: . root, diagnostics : DiagnosticsEngine ( ) )
7198
+ try workspace. loadPackageGraph ( rootPath: . root, observabilityScope : ObservabilitySystem . NOOP )
7199
7199
7200
7200
XCTAssertNotNil ( delegate. manifest)
7201
7201
XCTAssertEqual ( delegate. manifestLoadingDiagnostics? . count, 0 )
@@ -7210,7 +7210,7 @@ final class WorkspaceTests: XCTestCase {
7210
7210
customManifestLoader: TestLoader ( error: Diagnostics . fatalError) ,
7211
7211
delegate: delegate
7212
7212
)
7213
- try workspace. loadPackageGraph ( rootPath: . root, diagnostics : DiagnosticsEngine ( ) )
7213
+ try workspace. loadPackageGraph ( rootPath: . root, observabilityScope : ObservabilitySystem . NOOP )
7214
7214
7215
7215
XCTAssertNil ( delegate. manifest)
7216
7216
XCTAssertEqual ( delegate. manifestLoadingDiagnostics? . count, 0 )
@@ -7225,7 +7225,7 @@ final class WorkspaceTests: XCTestCase {
7225
7225
customManifestLoader: TestLoader ( error: StringError ( " boom " ) ) ,
7226
7226
delegate: delegate
7227
7227
)
7228
- try workspace. loadPackageGraph ( rootPath: . root, diagnostics : DiagnosticsEngine ( ) )
7228
+ try workspace. loadPackageGraph ( rootPath: . root, observabilityScope : ObservabilitySystem . NOOP )
7229
7229
7230
7230
XCTAssertNil ( delegate. manifest)
7231
7231
XCTAssertEqual ( delegate. manifestLoadingDiagnostics? . count, 1 )
0 commit comments