You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tests/WorkspaceTests/WorkspaceTests.swift
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -12387,7 +12387,7 @@ final class WorkspaceTests: XCTestCase {
12387
12387
12388
12388
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
12389
12389
testDiagnostics(diagnostics) { result in
12390
-
result.check(diagnostic: .equal("No registry configured for 'org' scope"), severity: .error)
12390
+
result.check(diagnostic: .equal("no registry configured for 'org' scope"), severity: .error)
12391
12391
}
12392
12392
}
12393
12393
}
@@ -12443,7 +12443,7 @@ final class WorkspaceTests: XCTestCase {
12443
12443
workspace.registryClient = registryClient
12444
12444
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
12445
12445
testDiagnostics(diagnostics) { result in
12446
-
result.check(diagnostic: .equal("Failed fetching 'org.foo' releases list from 'http://localhost': boom"), severity: .error)
12446
+
result.check(diagnostic: .equal("failed fetching 'org.foo' releases list from 'http://localhost': boom"), severity: .error)
12447
12447
}
12448
12448
}
12449
12449
}
@@ -12462,7 +12462,7 @@ final class WorkspaceTests: XCTestCase {
12462
12462
workspace.registryClient = registryClient
12463
12463
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
12464
12464
testDiagnostics(diagnostics) { result in
12465
-
result.check(diagnostic: .equal("Failed fetching 'org.foo' releases list from 'http://localhost': Server error 500: Internal Server Error"), severity: .error)
12465
+
result.check(diagnostic: .equal("failed fetching 'org.foo' releases list from 'http://localhost': server error 500: Internal Server Error"), severity: .error)
12466
12466
}
12467
12467
}
12468
12468
}
@@ -12519,7 +12519,7 @@ final class WorkspaceTests: XCTestCase {
12519
12519
workspace.registryClient = registryClient
12520
12520
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
@@ -12538,7 +12538,7 @@ final class WorkspaceTests: XCTestCase {
12538
12538
workspace.registryClient = registryClient
12539
12539
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
12540
12540
testDiagnostics(diagnostics) { result in
12541
-
result.check(diagnostic: .equal("Failed fetching 'org.foo@1.0.0' release checksum from 'http://localhost': Server error 500: Internal Server Error"), severity: .error)
12541
+
result.check(diagnostic: .equal("failed fetching 'org.foo@1.0.0' release checksum from 'http://localhost': server error 500: Internal Server Error"), severity: .error)
12542
12542
}
12543
12543
}
12544
12544
}
@@ -12595,7 +12595,7 @@ final class WorkspaceTests: XCTestCase {
12595
12595
workspace.registryClient = registryClient
12596
12596
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
12597
12597
testDiagnostics(diagnostics) { result in
12598
-
result.check(diagnostic: .equal("Failed retrieving 'org.foo@1.0.0' manifest from 'http://localhost': boom"), severity: .error)
12598
+
result.check(diagnostic: .equal("failed retrieving 'org.foo@1.0.0' manifest from 'http://localhost': boom"), severity: .error)
12599
12599
}
12600
12600
}
12601
12601
}
@@ -12614,7 +12614,7 @@ final class WorkspaceTests: XCTestCase {
12614
12614
workspace.registryClient = registryClient
12615
12615
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
12616
12616
testDiagnostics(diagnostics) { result in
12617
-
result.check(diagnostic: .equal("Failed retrieving 'org.foo@1.0.0' manifest from 'http://localhost': Server error 500: Internal Server Error"), severity: .error)
12617
+
result.check(diagnostic: .equal("failed retrieving 'org.foo@1.0.0' manifest from 'http://localhost': server error 500: Internal Server Error"), severity: .error)
12618
12618
}
12619
12619
}
12620
12620
}
@@ -12671,7 +12671,7 @@ final class WorkspaceTests: XCTestCase {
12671
12671
workspace.registryClient = registryClient
12672
12672
workspace.checkPackageGraphFailure(roots: ["MyPackage"]) { diagnostics in
0 commit comments