Skip to content

Commit

Permalink
Test running on macos13
Browse files Browse the repository at this point in the history
  • Loading branch information
jrosen081 committed Jan 11, 2024
1 parent 5c9f47d commit fa39b91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:

jobs:
test:
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v3

- name: "swift test"
run: swift test
run: swift test
4 changes: 2 additions & 2 deletions Sources/WhoopDIKit/ServiceDictionary.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
public final class ServiceDictionary<Value> {
private(set) var valuesByType: [ServiceKey: Value]
private var valuesByType: [ServiceKey: Value]

convenience public init() {
self.init(valuesByType: [:])
}

init(valuesByType: [ServiceKey: Value]) {
private init(valuesByType: [ServiceKey: Value]) {
self.valuesByType = valuesByType
}

Expand Down

0 comments on commit fa39b91

Please sign in to comment.