diff options
Diffstat (limited to 'test/functional/core/remote_spec.lua')
-rw-r--r-- | test/functional/core/remote_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/core/remote_spec.lua b/test/functional/core/remote_spec.lua index a48534f51b..caff06f6ab 100644 --- a/test/functional/core/remote_spec.lua +++ b/test/functional/core/remote_spec.lua @@ -81,7 +81,7 @@ describe('Remote', function() it('edit a single file', function() eq({ '', '' }, run_remote('--remote', fname)) expect(contents) - eq(2, #fn.getbufinfo()) + eq(1, #fn.getbufinfo()) end) it('tab edit a single file with a non-changed buffer', function() @@ -102,7 +102,7 @@ describe('Remote', function() expect(contents) command('next') expect(other_contents) - eq(3, #fn.getbufinfo()) + eq(2, #fn.getbufinfo()) end) it('send keys', function() |