hdl.ir: Update error message for Instance arguments
48d4ee4 added the option to specify attributes using Instance arguments,
but the error message wasn't updated accordingly.
This commit is contained in:
parent
a6db99b05e
commit
eb152da59b
2 changed files with 4 additions and 4 deletions
|
|
@ -786,14 +786,14 @@ class InstanceTestCase(FHDLTestCase):
|
|||
s = Signal()
|
||||
with self.assertRaisesRegex(NameError,
|
||||
(r"^Instance argument \('', 's1', \(sig s\)\) should be a tuple "
|
||||
r"\(kind, name, value\) where kind is one of \"p\", \"i\", \"o\", or \"io\"$")):
|
||||
r"\(kind, name, value\) where kind is one of \"a\", \"p\", \"i\", \"o\", or \"io\"$")):
|
||||
Instance("foo", ("", "s1", s))
|
||||
|
||||
def test_wrong_construct_kwarg(self):
|
||||
s = Signal()
|
||||
with self.assertRaisesRegex(NameError,
|
||||
(r"^Instance keyword argument x_s1=\(sig s\) does not start with one of "
|
||||
r"\"p_\", \"i_\", \"o_\", or \"io_\"$")):
|
||||
r"\"a_\", \"p_\", \"i_\", \"o_\", or \"io_\"$")):
|
||||
Instance("foo", x_s1=s)
|
||||
|
||||
def setUp_cpu(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue