1
0
forked from VimPlug/jedi

Use set literals

This commit is contained in:
Hugo
2018-01-04 18:17:35 +02:00
parent 3644c72efe
commit 3e8cd9f128
7 changed files with 9 additions and 9 deletions

View File

@@ -177,7 +177,7 @@ class IntegrationTestCase(object):
completions = self.script().completions()
#import cProfile; cProfile.run('script.completions()')
comp_str = set([c.name for c in completions])
comp_str = {c.name for c in completions}
return compare_cb(self, comp_str, set(literal_eval(self.correct)))
def run_goto_definitions(self, compare_cb):