Fixed D400,D102

This commit is contained in:
Dimitris Zlatanidis 2024-05-22 19:22:47 +03:00
parent 8ef7162425
commit de987e1468

View file

@ -8,6 +8,7 @@ class TestSBoQueries(unittest.TestCase):
"""Test for SBo queries."""
def setUp(self) -> None:
"""Set the test."""
load = LoadData()
self.data: dict = load.load('sbo')
self.name: str = 'slpkg'
@ -27,7 +28,7 @@ class TestSBoQueries(unittest.TestCase):
'/4.9.8/slpkg-4.9.8.tar.gz'], self.data[self.name]['download'])
def test_sources_x86_64(self) -> None:
"""Test sources for x64. arch"""
"""Test sources for x64 arch."""
self.assertEqual([], self.data[self.name]['download64'])
def test_requires(self) -> None: