From 9e5dabbf8471200cc2fc3b9a750c7d6035e7e2c2 Mon Sep 17 00:00:00 2001 From: Saul Shanabrook Date: Tue, 8 Aug 2023 14:19:29 -0400 Subject: [PATCH] Fix tests --- python/tests/test_convert.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/tests/test_convert.py b/python/tests/test_convert.py index 4fd5d1b6..e5790cbb 100644 --- a/python/tests/test_convert.py +++ b/python/tests/test_convert.py @@ -1,6 +1,4 @@ -import numpy as np from egglog import * -from egglog.runtime import CONVERSIONS def test_conversion_custom_metaclass(): @@ -18,7 +16,6 @@ def __init__(self): ... converter(MyMeta, MyTypeExpr, lambda x: MyTypeExpr()) - print(CONVERSIONS) assert expr_parts(convert(MyType(), MyTypeExpr)) == expr_parts(MyTypeExpr())