Skip to content

Commit df74d35

Browse files
committed
Issue#1492: Updated test class names.
1 parent 81de9b0 commit df74d35

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/constrained_array_definition/test_rule_100.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
utils.read_file(os.path.join(sTestDir, "rule_100_test_input.fixed.vhd"), lExpected)
1919

2020

21-
class test_constrained_array_definition_rule(unittest.TestCase):
21+
class test_rule(unittest.TestCase):
2222
def setUp(self):
2323
self.oFile = vhdlFile.vhdlFile(lFile)
2424
self.assertIsNone(eError)

tests/constrained_array_definition/test_rule_101.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
utils.read_file(os.path.join(sTestDir, "rule_101_test_input.fixed.vhd"), lExpected)
1919

2020

21-
class test_constrained_array_definition_rule(unittest.TestCase):
21+
class test_rule(unittest.TestCase):
2222
def setUp(self):
2323
self.oFile = vhdlFile.vhdlFile(lFile)
2424
self.assertIsNone(eError)

tests/constrained_array_definition/test_rule_102.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
utils.read_file(os.path.join(sTestDir, "rule_102_test_input.fixed.vhd"), lExpected)
1919

2020

21-
class test_constrained_array_definition_rule(unittest.TestCase):
21+
class test_rule(unittest.TestCase):
2222
def setUp(self):
2323
self.oFile = vhdlFile.vhdlFile(lFile)
2424
self.assertIsNone(eError)

tests/unbounded_array_definition/test_rule_100.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
utils.read_file(os.path.join(sTestDir, "rule_100_test_input.fixed.vhd"), lExpected)
1919

2020

21-
class test_unbounded_array_definition_rule(unittest.TestCase):
21+
class test_rule(unittest.TestCase):
2222
def setUp(self):
2323
self.oFile = vhdlFile.vhdlFile(lFile)
2424
self.assertIsNone(eError)

tests/unbounded_array_definition/test_rule_101.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
utils.read_file(os.path.join(sTestDir, "rule_101_test_input.fixed.vhd"), lExpected)
1919

2020

21-
class test_unbounded_array_definition_rule(unittest.TestCase):
21+
class test_rule(unittest.TestCase):
2222
def setUp(self):
2323
self.oFile = vhdlFile.vhdlFile(lFile)
2424
self.assertIsNone(eError)

tests/unbounded_array_definition/test_rule_102.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
utils.read_file(os.path.join(sTestDir, "rule_102_test_input.fixed.vhd"), lExpected)
1919

2020

21-
class test_unbounded_array_definition_rule(unittest.TestCase):
21+
class test_rule(unittest.TestCase):
2222
def setUp(self):
2323
self.oFile = vhdlFile.vhdlFile(lFile)
2424
self.assertIsNone(eError)

0 commit comments

Comments
 (0)