BUGFIX: Rename duplicate method

As we actually have 10 tests instead of 9, just one was overwriting
another one.
This commit is contained in:
Daniel Siepmann 2017-08-21 11:14:24 +02:00
parent 3b6676668b
commit ff8946411e
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -22,7 +22,7 @@ class TestNeotagsPlugin(fake_filesystem_unittest.TestCase):
self.assertEqual('tags', self.plugin.options['tags_filename'])
self.assertEqual(False, self.plugin.options['logging'])
def test_default_options(self):
def test_custom_options(self):
self.plugin.nvim.configure_mock(vars={})
self.plugin.nvim.vars['neotags_tags_filename'] = 'new_tags'
self.plugin.nvim.vars['neotags_ctags_cmd'] = 'new_ctags'