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

Commit

Permalink
nameOverride typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ktoso committed Sep 23, 2020
1 parent d5c1316 commit 2e7a9ec
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "swift-log",
"repositoryURL": "https://github.com/apple/swift-log.git",
"state": {
"branch": null,
"revision": "173f567a2dfec11d74588eea82cecea555bdc0bc",
"version": "1.4.0"
}
}
]
},
"version": 1
}
2 changes: 1 addition & 1 deletion Tests/BaggageContextTests/BaggageContextTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -209,5 +209,5 @@ private enum TestIDKey: Baggage.Key {
private enum SecondTestIDKey: Baggage.Key {
typealias Value = String

static let name: String? = "secondIDExplicitlyNamed"
static let nameOverride: String? = "secondIDExplicitlyNamed"
}
4 changes: 2 additions & 2 deletions Tests/BaggageTests/BaggageTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private enum TestIDKey: Baggage.Key {
}

private extension Baggage {
public internal(set) var testID: Int? {
var testID: Int? {
get {
return self[TestIDKey.self]
}
Expand All @@ -97,5 +97,5 @@ private extension Baggage {
private enum SecondTestIDKey: Baggage.Key {
typealias Value = String

static let name: String? = "ExplicitKeyName"
static let nameOverride: String? = "ExplicitKeyName"
}

0 comments on commit 2e7a9ec

Please sign in to comment.