From 0ae09f73d87eda387e34d9ffce0c33b39364c977 Mon Sep 17 00:00:00 2001 From: Islam <2553451+qalandarov@users.noreply.github.com> Date: Thu, 25 Sep 2025 18:34:08 +0100 Subject: [PATCH] Fix tests that were broken after localization integration (#677) --- bitchatTests/LocationNotesManagerTests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitchatTests/LocationNotesManagerTests.swift b/bitchatTests/LocationNotesManagerTests.swift index 1672d6f7..32e7ffb1 100644 --- a/bitchatTests/LocationNotesManagerTests.swift +++ b/bitchatTests/LocationNotesManagerTests.swift @@ -21,7 +21,7 @@ final class LocationNotesManagerTests: XCTestCase { XCTAssertFalse(subscribeCalled) XCTAssertEqual(manager.state, .noRelays) XCTAssertTrue(manager.initialLoadComplete) - XCTAssertEqual(manager.errorMessage, "No geo relays available near this location. Try again soon.") + XCTAssertEqual(manager.errorMessage, "no geo relays available near this location. try again soon.") } func testSendWhenNoRelaysSurfacesError() { @@ -40,7 +40,7 @@ final class LocationNotesManagerTests: XCTestCase { XCTAssertFalse(sendCalled) XCTAssertEqual(manager.state, .noRelays) - XCTAssertEqual(manager.errorMessage, "No geo relays available near this location. Try again soon.") + XCTAssertEqual(manager.errorMessage, "no geo relays available near this location. try again soon.") } func testSubscribeUsesGeoRelaysAndAppendsNotes() {