]> git.proxmox.com Git - mirror_xterm.js.git/blobdiff - src/SelectionModel.test.ts
Merge pull request #690 from Tyriar/687_macos_ci
[mirror_xterm.js.git] / src / SelectionModel.test.ts
index e8629596c0fc6e4c1b4f4c6480688e5ec654e5ad..ab22b77cc50bb9fb6ccbf8a25df0528dc82de1a4 100644 (file)
@@ -11,8 +11,6 @@ class TestSelectionModel extends SelectionModel {
   ) {
     super(terminal);
   }
-
-  public areSelectionValuesReversed(): boolean { return this._areSelectionValuesReversed(); }
 }
 
 describe('SelectionManager', () => {
@@ -39,7 +37,7 @@ describe('SelectionManager', () => {
     });
   });
 
-  describe('_areSelectionValuesReversed', () => {
+  describe('areSelectionValuesReversed', () => {
     it('should return true when the selection end is before selection start', () => {
       model.selectionStart = [1, 0];
       model.selectionEnd = [0, 0];