Skip to content

Commit

Permalink
Fixed InOut test.
Browse files Browse the repository at this point in the history
  • Loading branch information
phanrahan committed Aug 8, 2018
1 parent b937d1d commit 6d8f397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_verilog/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_simple():
v = DeclareFromVerilog(s)
top = v[0]
assert top.name == "top"
assert repr(top.IO) == "Interface(a, In(Bit), b, Out(Bit), c, Bit)"
assert repr(top.IO) == "Interface(a, In(Bit), b, Out(Bit), c, InOut(Bit))"

def test_small():
file_path = os.path.dirname(__file__)
Expand Down

0 comments on commit 6d8f397

Please sign in to comment.