Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Takamitsu Yoshii committed Aug 9, 2019
1 parent cb560a1 commit 3eb24df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
expect(testConfig.allowMultipleViewControllerOrientations).to(equal(NO));
expect(testConfig.dataSource).to(equal(testDataSource));
expect(testConfig.rootViewController).to(equal(testViewController));
expect(testConfig.showVideoBackgroundDisplay).to(equal(YES));
});
});

Expand All @@ -54,7 +53,6 @@
expect(testConfig.allowMultipleViewControllerOrientations).to(equal(NO));
expect(testConfig.dataSource).to(beNil());
expect(testConfig.rootViewController).to(beNil());
expect(testConfig.showVideoBackgroundDisplay).to(equal(YES));
});
});

Expand All @@ -74,7 +72,6 @@
expect(testConfig.allowMultipleViewControllerOrientations).to(equal(NO));
expect(testConfig.dataSource).to(beNil());
expect(testConfig.rootViewController).to(beNil());
expect(testConfig.showVideoBackgroundDisplay).to(equal(YES));
});
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ __block void (^sendNotificationForHMILevel)(SDLHMILevel hmiLevel, SDLVideoStream
expect(@(CGSizeEqualToSize(streamingLifecycleManager.screenSize, CGSizeZero))).to(equal(@YES));
expect(@(streamingLifecycleManager.pixelBufferPool == NULL)).to(equal(@YES));
expect(@(streamingLifecycleManager.requestedEncryptionType)).to(equal(@(SDLStreamingEncryptionFlagNone)));
expect(@(streamingLifecycleManager.showVideoBackgroundDisplay)).to(equal(@YES));
expect(streamingLifecycleManager.currentAppState).to(equal(SDLAppStateActive));
expect(streamingLifecycleManager.currentVideoStreamState).to(equal(SDLVideoStreamManagerStateStopped));
expect(streamingLifecycleManager.videoFormat).to(beNil());
Expand Down

0 comments on commit 3eb24df

Please sign in to comment.