diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-29 00:46:41 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-29 00:46:41 +0100 |
commit | 71a7c3b1102b888f0560de64d9efaa48d8a3738f (patch) | |
tree | ca962a679bf3406195da6be6b6a28b26f60a819f /testsuite/pyunit | |
parent | 9e991938ae1f0ad188ce33f73c51b1c9d4354589 (diff) | |
download | ghdl-71a7c3b1102b888f0560de64d9efaa48d8a3738f.tar.gz ghdl-71a7c3b1102b888f0560de64d9efaa48d8a3738f.tar.bz2 ghdl-71a7c3b1102b888f0560de64d9efaa48d8a3738f.zip |
Fixed package names in pyGHDL.dom and Initialize test case.
Diffstat (limited to 'testsuite/pyunit')
-rw-r--r-- | testsuite/pyunit/libghdl/Initialize.py | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/testsuite/pyunit/libghdl/Initialize.py b/testsuite/pyunit/libghdl/Initialize.py index 90692760c..7ad00a995 100644 --- a/testsuite/pyunit/libghdl/Initialize.py +++ b/testsuite/pyunit/libghdl/Initialize.py @@ -1,12 +1,9 @@ -from pathlib import Path -from unittest import TestCase - -import libghdl -from libghdl.thin import name_table -from libghdl.thin import files_map -from libghdl.thin.vhdl import nodes -from libghdl.thin.vhdl import sem_lib -from libghdl.thin import errorout_console +from pathlib import Path +from unittest import TestCase + +import pyGHDL.libghdl as libghdl +from pyGHDL.libghdl import name_table, files_map, errorout_console +from pyGHDL.libghdl.vhdl import nodes, sem_lib if __name__ == "__main__": |