We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9701d18 + d65a48a commit feda92cCopy full SHA for feda92c
Loop/Managers/TestingScenariosManager.swift
@@ -234,9 +234,12 @@ extension TestingScenariosManagerRequirements {
234
}
235
236
237
- instance.injectedActions.forEach { [testingCGMManager, testingPumpManager] action in
238
- testingCGMManager?.inject(action: action)
239
- testingPumpManager?.inject(action: action)
+ instance.deviceActions.forEach { [testingCGMManager, testingPumpManager] action in
+ if testingCGMManager?.managerIdentifier == action.managerIdentifier {
+ testingCGMManager?.trigger(action: action)
240
+ } else if testingPumpManager?.managerIdentifier == action.managerIdentifier {
241
+ testingPumpManager?.trigger(action: action)
242
+ }
243
244
245
0 commit comments