diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-22 19:11:06 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:44:14 +0100 |
commit | 6cbd112a8685f4439394f21965404dd0d7c41567 (patch) | |
tree | 752772c979a98531ac735569f7167c18e3aa8827 /testsuite/pyunit/libghdl/Initialize.py | |
parent | acdf4682ad471089b4bddb960359820a97e6b66a (diff) | |
download | ghdl-6cbd112a8685f4439394f21965404dd0d7c41567.tar.gz ghdl-6cbd112a8685f4439394f21965404dd0d7c41567.tar.bz2 ghdl-6cbd112a8685f4439394f21965404dd0d7c41567.zip |
Fixed path to SimpleEntity.
Diffstat (limited to 'testsuite/pyunit/libghdl/Initialize.py')
-rw-r--r-- | testsuite/pyunit/libghdl/Initialize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/pyunit/libghdl/Initialize.py b/testsuite/pyunit/libghdl/Initialize.py index 11bfe9a56..299b6321e 100644 --- a/testsuite/pyunit/libghdl/Initialize.py +++ b/testsuite/pyunit/libghdl/Initialize.py @@ -14,7 +14,7 @@ if __name__ == "__main__": class Instantiate(TestCase): _root = Path(__file__).resolve().parent.parent - _filename: Path = _root / "SimpleEntity.vhdl" + _filename: Path = _root / "dom/examples/SimpleEntity.vhdl" @staticmethod def getIdentifier(node): |