From bc1c20e560a3f6d4a6383ea1ef31712f8a3b5d70 Mon Sep 17 00:00:00 2001 From: Khan Winter <35942988+thecoolwinter@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:04:08 -0600 Subject: [PATCH] Update TextViewControllerTests.swift Co-authored-by: Austin Condiff --- Tests/CodeEditSourceEditorTests/TextViewControllerTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/CodeEditSourceEditorTests/TextViewControllerTests.swift b/Tests/CodeEditSourceEditorTests/TextViewControllerTests.swift index 24b977da6..92dbd6c8b 100644 --- a/Tests/CodeEditSourceEditorTests/TextViewControllerTests.swift +++ b/Tests/CodeEditSourceEditorTests/TextViewControllerTests.swift @@ -239,7 +239,7 @@ final class TextViewControllerTests: XCTestCase { controller.viewDidLoad() let _ = controller.textView.becomeFirstResponder() controller.bracketPairHighlight = nil - controller.setText("{ Loren Ipsum {} }") + controller.setText("{ Lorem Ipsum {} }") controller.setCursorPositions([CursorPosition(line: 1, column: 2)]) // After first opening { XCTAssert(controller.highlightLayers.isEmpty, "Controller added highlight layer when setting is set to `nil`") controller.setCursorPositions([CursorPosition(line: 1, column: 3)])