Merge "Typo in the name of the YAML formatter test"

This commit is contained in:
Zuul 2018-03-22 15:44:15 +00:00 committed by Gerrit Code Review
commit 67b6f531a1
1 changed files with 2 additions and 2 deletions

View File

@ -28,10 +28,10 @@ from bandit.core import metrics
from bandit.formatters import json as b_json
class JsonFormatterTests(testtools.TestCase):
class YamlFormatterTests(testtools.TestCase):
def setUp(self):
super(JsonFormatterTests, self).setUp()
super(YamlFormatterTests, self).setUp()
conf = config.BanditConfig()
self.manager = manager.BanditManager(conf, 'file')
(tmp_fd, self.tmp_fname) = tempfile.mkstemp()