Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ extension UserRobot {

@discardableResult
func assertMentionWasApplied(file: StaticString = #filePath, line: UInt = #line) -> Self {
let expectedText = "@\(UserDetails.hanSoloName)"
let expectedText = "@\(UserDetails.countDookuName)"
let actualText = MessageListPage.Composer.textView.waitForText(expectedText).text
XCTAssertEqual(expectedText, actualText, file: file, line: line)
return self
Expand Down
2 changes: 1 addition & 1 deletion StreamChatSwiftUITestsAppTests/Robots/UserRobot.swift
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ extension UserRobot {

@discardableResult
func mentionParticipant(manually: Bool = false) -> Self {
let text = "@\(UserDetails.hanSoloId)"
let text = "@\(UserDetails.countDookuId)"
if manually {
typeText(text)
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ final class MessageList_Tests: StreamTestCase {
linkToScenario(withId: 254)

let message = "message"
let author = "Han Solo"
let author = "Count Dooku"

GIVEN("user opens the channel") {
userRobot.login().openChannel()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import XCTest

// Requires running a standalone Sinatra server
final class PushNotification_Tests: StreamTestCase {
let sender = "Han Solo"
let sender = "Count Dooku"
let message = "How are you? 🙂"

override func setUpWithError() throws {
Expand Down
Loading