From 9dc874ec7b055235183a55afb88c3e7167321016 Mon Sep 17 00:00:00 2001 From: Jared Roesch Date: Tue, 23 Oct 2018 14:58:31 -0700 Subject: [PATCH] Fix test case --- tests/python/relay/test_ir_text_printer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/relay/test_ir_text_printer.py b/tests/python/relay/test_ir_text_printer.py index 29814ecc5eb7..1d272236c680 100644 --- a/tests/python/relay/test_ir_text_printer.py +++ b/tests/python/relay/test_ir_text_printer.py @@ -30,7 +30,7 @@ def test_env(): env["myf"] = f text = env.astext() assert "def @myf" in text - assert "%1 = add(%0, %0) # ty=float32" in text + assert "%1 = add(%0, %0) # ty=float32" in text show(text)