mirror of https://github.com/KLayout/klayout.git
Fixed pymod test
This commit is contained in:
parent
b360df16e3
commit
3e3e8d4ba3
|
|
@ -166,7 +166,8 @@ class DBPCellTests(unittest.TestCase):
|
|||
def test_0(self):
|
||||
|
||||
# PCellDeclarationHelper is inside "pya.__all__"
|
||||
self.assertEqual("PCellDeclarationHelper" in pya.__all__, True)
|
||||
if hasattr(pya, "__all__"):
|
||||
self.assertEqual("PCellDeclarationHelper" in pya.__all__, True)
|
||||
|
||||
def test_1(self):
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue