summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2021-01-05 09:58:10 -0500
committerGitHub <noreply@github.com>2021-01-05 09:58:10 -0500
commit3e60ed2f27ba559676caa618fe4f776f9d06d1c1 (patch)
tree81e771a93c7e2b896e5866f8cd2bcb06c0a8f9f2
parentc3dded18f53910caf5d8f07fe00a4ce89ec3c80b (diff)
parentf231005ed41e9390fb4657414fed9eed4140a462 (diff)
downloadsdl_ios-3e60ed2f27ba559676caa618fe4f776f9d06d1c1.tar.gz
Merge pull request #1881 from smartdevicelink/bugfix/issue_1880_failing_GitHub_CI_unit_tests
Fix unit tests fail randomly in the SDLVoiceCommandManagerSpec
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLVoiceCommandManagerSpec.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLVoiceCommandManagerSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLVoiceCommandManagerSpec.m
index 8b808273e..58d5ff591 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLVoiceCommandManagerSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLVoiceCommandManagerSpec.m
@@ -151,7 +151,7 @@ describe(@"voice command manager", ^{
it(@"should update the second operation", ^{
SDLVoiceCommandUpdateOperation *secondOp = testManager.transactionQueue.operations[0];
- expect(secondOp.oldVoiceCommands.firstObject).to(equal(testVoiceCommand2));
+ expect(secondOp.oldVoiceCommands.firstObject).toEventually(equal(testVoiceCommand2));
});
});
});