forked from mirrors/linphone-iphone
LinphoneUITester: fix typo
This commit is contained in:
parent
738a98b69c
commit
d3e00234cc
1 changed files with 5 additions and 1 deletions
|
|
@ -147,7 +147,11 @@
|
|||
// check that the tableview is empty
|
||||
UITableView *tv = nil;
|
||||
NSError *err = nil;
|
||||
if ([tester tryFindingAccessibilityElement:nil view:&tv withIdentifier:@"Chat list" tappable:false error:&err]) {
|
||||
if ([tester tryFindingAccessibilityElement:nil
|
||||
view:&tv
|
||||
withIdentifier:@"ChatRoom list"
|
||||
tappable:false
|
||||
error:&err]) {
|
||||
XCTAssertNotNil(tv);
|
||||
ASSERT_EQ([tv numberOfRowsInSection:0], 0); // no more messages
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue