diff options
author | Blaž Hrastnik | 2021-02-15 15:15:38 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-15 15:15:38 +0000 |
commit | 65893a2cbc0c91ad9e6f82f81d77111caacbffb7 (patch) | |
tree | 868129fb43d581e62d3fefb59624be58999b8999 /helix-core | |
parent | 83d48f10ea01673c990296c0a5efb5bc201b4972 (diff) |
fix test
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs index d2be266c..1b8ae1eb 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -350,7 +350,7 @@ mod test { assert_eq!( coords_at_pos( &slice, - move_vertically(&slice, Direction::Forward, range, 1).head + move_vertically(&slice, Direction::Forward, range, 1, false).head ), (1, 2).into() ); |