Skip to content

Commit

Permalink
Update golden for new error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
rsetaluri committed Aug 23, 2018
1 parent b255c5f commit 6f7bcf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_type/test_type_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_array_lengths(caplog):
buf = Buf()
wire(main.O, buf.I)
assert "\n".join(x.msg for x in caplog.records) == """\
\033[1mtests/test_type/test_type_errors.py:10: Cannot wire main.O (type=Array(7,In(Bit)), len=8) to main.Buf_inst0.I (type=Array(8,In(Bit)), len=7) because the arrays do not have the same length
\033[1mtests/test_type/test_type_errors.py:10: Cannot wire main.O (type=Array(7,In(Bit))) to main.Buf_inst0.I (type=Array(8,In(Bit))) because the arrays do not have the same length
wire(main.O, buf.I)
"""

Expand Down

0 comments on commit 6f7bcf3

Please sign in to comment.