Fix rebase issues

This commit is contained in:
Alfonso Grillo
2023-02-01 11:41:59 +01:00
parent f95d5b3688
commit 8719dc186e
2 changed files with 5 additions and 3 deletions

View File

@@ -99,8 +99,8 @@ final class NotificationSettingsViewModelTests: XCTestCase {
XCTAssertEqual(viewModel.viewState.selectionState[.oneToOneRoom], true)
// the oneToOneRoom rule should be flagged as "out of sync"
XCTAssertTrue(self.viewModel.isRuleOutOfSync(.oneToOneRoom))
XCTAssertFalse(self.viewModel.isRuleOutOfSync(.allOtherMessages))
XCTAssertTrue(viewModel.isRuleOutOfSync(.oneToOneRoom))
XCTAssertFalse(viewModel.isRuleOutOfSync(.allOtherMessages))
}
}