aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/Initialize.py
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2022-12-24 08:56:55 +0100
committerGitHub <noreply@github.com>2022-12-24 08:56:55 +0100
commit26bb3c572eaffafafd8de8ef09b8acc34f91656f (patch)
tree2d70696f4f8bb78f9a4fda7a6d596775fdf080cc /testsuite/pyunit/libghdl/Initialize.py
parent8845f761ed2299e595afd5eee2444fed7fb79639 (diff)
parent5d9897770cb16494c6379cce85ed5935532c0cd1 (diff)
downloadghdl-26bb3c572eaffafafd8de8ef09b8acc34f91656f.tar.gz
ghdl-26bb3c572eaffafafd8de8ef09b8acc34f91656f.tar.bz2
ghdl-26bb3c572eaffafafd8de8ef09b8acc34f91656f.zip
Merge pull request #2265 from Paebbels/paebbels/DOM-with-documentation
pyGHDL.dom with Documentation
Diffstat (limited to 'testsuite/pyunit/libghdl/Initialize.py')
-rw-r--r--testsuite/pyunit/libghdl/Initialize.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/testsuite/pyunit/libghdl/Initialize.py b/testsuite/pyunit/libghdl/Initialize.py
index 7e3ace869..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):
@@ -39,7 +39,7 @@ class Instantiate(TestCase):
file_id = name_table.Get_Identifier(str(self._filename))
sfe = files_map.Read_Source_File(name_table.Null_Identifier, file_id)
if sfe == files_map.No_Source_File_Entry:
- self.fail("Cannot read file '{!s}'".format(self._filename))
+ self.fail(f"Cannot read file '{self._filename}'")
# Parse
file = sem_lib.Load_File(sfe)
@@ -54,7 +54,7 @@ class Instantiate(TestCase):
self.assertEqual(
"counter",
entityName,
- "expected entity name 'counter', got '{}'".format(entityName),
+ f"expected entity name 'counter', got '{entityName}'",
)
elif nodes.Get_Kind(libraryUnit) == nodes.Iir_Kind.Architecture_Body:
@@ -62,9 +62,7 @@ class Instantiate(TestCase):
self.assertEqual(
"rtl",
architectureName,
- "expected architecture name 'rtl', got '{}'".format(
- architectureName
- ),
+ f"expected architecture name 'rtl', got '{architectureName}'"
)
else: