diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-29 19:10:33 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-07-01 06:39:46 +0200 |
commit | 6acaf4b6baba21f8eca7520f518c62ffd75abd04 (patch) | |
tree | f0385151319a67703cf4fed45641d5ce437598ad /testsuite/pyunit/dom/Expressions.py | |
parent | 7f4ed5db5e0e9c0967000d50a4f3f14e88bf9dd7 (diff) | |
download | ghdl-6acaf4b6baba21f8eca7520f518c62ffd75abd04.tar.gz ghdl-6acaf4b6baba21f8eca7520f518c62ffd75abd04.tar.bz2 ghdl-6acaf4b6baba21f8eca7520f518c62ffd75abd04.zip |
Minor changes.
Diffstat (limited to 'testsuite/pyunit/dom/Expressions.py')
-rw-r--r-- | testsuite/pyunit/dom/Expressions.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/pyunit/dom/Expressions.py b/testsuite/pyunit/dom/Expressions.py index 6f64c6c86..21b0cd03b 100644 --- a/testsuite/pyunit/dom/Expressions.py +++ b/testsuite/pyunit/dom/Expressions.py @@ -103,8 +103,8 @@ class Expressions(TestCase): # default: Expression = self.parse(filename, constantDeclartion) # # # Start checks - # self.assertTrue(isinstance(default, AbsoluteExpression)) - # self.assertTrue(isinstance(default.Operand, SimpleObjectOrFunctionCallSymbol)) + # self.assertIsInstance(default, AbsoluteExpression) + # self.assertIsInstance(default.Operand, SimpleObjectOrFunctionCallSymbol) # self.assertTrue(default.Operand.SymbolName == "-3") # def test_Aggregare(self): @@ -130,6 +130,6 @@ class Expressions(TestCase): # package: Package = design.Documents[0].Packages[0] # item: Constant = package.DeclaredItems[0] # default: Expression = item.DefaultExpression - # self.assertTrue(isinstance(default, InverseExpression)) - # self.assertTrue(isinstance(default.Operand, SimpleObjectOrFunctionCallSymbol)) + # self.assertIsInstance(default, InverseExpression) + # self.assertIsInstance(default.Operand, SimpleObjectOrFunctionCallSymbol) # self.assertTrue(default.Operand.SymbolName == "true") |