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.
1 parent b07f825 commit d65a48aCopy full SHA for d65a48a
Loop/Managers/TestingScenariosManager.swift
@@ -233,9 +233,12 @@ extension TestingScenariosManagerRequirements {
233
}
234
235
236
- instance.injectedActions.forEach { [testingCGMManager, testingPumpManager] action in
237
- testingCGMManager?.inject(action: action)
238
- testingPumpManager?.inject(action: action)
+ instance.deviceActions.forEach { [testingCGMManager, testingPumpManager] action in
+ if testingCGMManager?.managerIdentifier == action.managerIdentifier {
+ testingCGMManager?.trigger(action: action)
239
+ } else if testingPumpManager?.managerIdentifier == action.managerIdentifier {
240
+ testingPumpManager?.trigger(action: action)
241
+ }
242
243
244
0 commit comments