Skip to content

Commit

Permalink
revert id test
Browse files Browse the repository at this point in the history
  • Loading branch information
joshpoll committed Oct 5, 2018
1 parent 8a6fd34 commit faa79bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/python/relay/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def test_vars():
# assert temp_var.name == "1"

# var
var = parse_expr("let %foo = 0; %foo")
# var = parse_expr("let %foo = 0; %foo")
var = parse_expr("%foo")
assert isinstance(var.body, relay.Var)
assert var.body.name == "foo"

Expand Down

0 comments on commit faa79bc

Please sign in to comment.