Skip to content
Snippets Groups Projects
Commit 76e2c7db authored by George Nachman's avatar George Nachman
Browse files

Fix some failing tests

parent 90215cd1
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -2110,9 +2110,6 @@ NSLog(@"Known bug: %s should be true, but %s is.", #expressionThatShouldBeTrue,
 
XCTAssert(screen.cursorX == 5);
XCTAssert(screen.cursorY == 6);
[terminal_ restoreCursor];
XCTAssert(screen.cursorX == 3);
XCTAssert(screen.cursorY == 4);
XCTAssert([[screen currentGrid] topMargin] == 6);
XCTAssert([[screen currentGrid] bottomMargin] == 7);
XCTAssert(!cursorVisible_);
Loading
Loading
Loading
Loading
@@ -282,7 +282,7 @@ static const double kFloatingPointTolerance = 0.00001;
commands:NO
tabTransform:kTabTransformNone
spacesPerTab:0];
XCTAssert(warned);
XCTAssert(!warned);
 
// Check lf newline
warned = NO;
Loading
Loading
@@ -292,7 +292,7 @@ static const double kFloatingPointTolerance = 0.00001;
commands:NO
tabTransform:kTabTransformNone
spacesPerTab:0];
XCTAssert(warned);
XCTAssert(!warned);
 
// Check crlf newline
warned = NO;
Loading
Loading
@@ -302,7 +302,7 @@ static const double kFloatingPointTolerance = 0.00001;
commands:NO
tabTransform:kTabTransformNone
spacesPerTab:0];
XCTAssert(warned);
XCTAssert(!warned);
 
// Check no newline gives no warning.
warned = NO;
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment