From ff8946411eb6ae5f79c704d5ffcbea3f0527c23f Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 21 Aug 2017 11:14:24 +0200 Subject: [PATCH] BUGFIX: Rename duplicate method As we actually have 10 tests instead of 9, just one was overwriting another one. --- rplugin/test/test_neotags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rplugin/test/test_neotags.py b/rplugin/test/test_neotags.py index 25e5b26..78af374 100644 --- a/rplugin/test/test_neotags.py +++ b/rplugin/test/test_neotags.py @@ -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'