Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Commit 33bc17c

Browse files
committed
nameOverride typo
1 parent d8766d2 commit 33bc17c

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

Diff for: Package.resolved

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"object": {
3+
"pins": [
4+
{
5+
"package": "swift-log",
6+
"repositoryURL": "https://github.com/apple/swift-log.git",
7+
"state": {
8+
"branch": null,
9+
"revision": "173f567a2dfec11d74588eea82cecea555bdc0bc",
10+
"version": "1.4.0"
11+
}
12+
}
13+
]
14+
},
15+
"version": 1
16+
}

Diff for: Tests/BaggageContextTests/BaggageContextTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,5 +209,5 @@ private enum TestIDKey: Baggage.Key {
209209
private enum SecondTestIDKey: Baggage.Key {
210210
typealias Value = String
211211

212-
static let name: String? = "secondIDExplicitlyNamed"
212+
static let nameOverride: String? = "secondIDExplicitlyNamed"
213213
}

Diff for: Tests/BaggageTests/BaggageTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private enum TestIDKey: Baggage.Key {
8484
}
8585

8686
private extension Baggage {
87-
public internal(set) var testID: Int? {
87+
var testID: Int? {
8888
get {
8989
return self[TestIDKey.self]
9090
}
@@ -97,5 +97,5 @@ private extension Baggage {
9797
private enum SecondTestIDKey: Baggage.Key {
9898
typealias Value = String
9999

100-
static let name: String? = "ExplicitKeyName"
100+
static let nameOverride: String? = "ExplicitKeyName"
101101
}

0 commit comments

Comments
 (0)