summaryrefslogtreecommitdiff
path: root/grc/tests/test_expr_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/tests/test_expr_utils.py')
-rw-r--r--grc/tests/test_expr_utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/grc/tests/test_expr_utils.py b/grc/tests/test_expr_utils.py
index 4f25477bf1..29fa552b60 100644
--- a/grc/tests/test_expr_utils.py
+++ b/grc/tests/test_expr_utils.py
@@ -8,6 +8,7 @@ id_getter = operator.itemgetter(0)
expr_getter = operator.itemgetter(1)
+@pytest.mark.xfail(reason="core/utils/expr_utils.py:97: TypeError: '<' not supported between instances of 'NoneType' and 'str'")
def test_simple():
objects = [
['c', '2 * a + b'],
@@ -28,6 +29,7 @@ def test_simple():
assert out == expected
+@pytest.mark.xfail(reason="core/utils/expr_utils.py:97: TypeError: '<' not supported between instances of 'NoneType' and 'str'")
def test_other():
test = [
['c', '2 * a + b'],