]> git.lizzy.rs Git - micro.git/commitdiff
Improve buffer test
authorZachary Yedidia <zyedidia@gmail.com>
Wed, 26 Feb 2020 04:59:27 +0000 (23:59 -0500)
committerZachary Yedidia <zyedidia@gmail.com>
Wed, 26 Feb 2020 04:59:27 +0000 (23:59 -0500)
internal/buffer/buffer_test.go

index d5a027b410b033b58ee2be9bb44c79508191cff5..15418fe30d9a8d78c671e74124db22add7349603 100644 (file)
@@ -79,7 +79,6 @@ func check(t *testing.T, before []string, operations []operation, after []string
                cursor := cursors[i]
                b.SetCurCursor(cursor.Num)
                cursor.DeleteSelection()
-               cursor.ResetSelection()
                b.Insert(cursor.Loc, strings.Join(op.text, "\n"))
        }
 
@@ -95,7 +94,7 @@ func check(t *testing.T, before []string, operations []operation, after []string
 
        for i, op := range operations {
                cursor := cursors[i]
-               if !cursor.HasSelection() {
+               if op.start == op.end {
                        assert.Equal(op.start, cursor.Loc)
                } else {
                        assert.Equal(op.start, cursor.CurSelection[0])