From 6f8b8b77553ba60384239fd2ffd4c7c23f6afbd0 Mon Sep 17 00:00:00 2001 From: Ivan Ogasawara Date: Fri, 4 May 2018 16:37:58 -0400 Subject: [PATCH] Fixed test --- ibis/mapd/tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/mapd/tests/test_client.py b/ibis/mapd/tests/test_client.py index 5575b645c8cd..719f390ca095 100644 --- a/ibis/mapd/tests/test_client.py +++ b/ibis/mapd/tests/test_client.py @@ -65,5 +65,5 @@ def test_compile_toplevel(): # it works! expr = t.foo.sum() result = ibis.mapd.compile(expr) - expected = 'SELECT sum("foo") AS sum\nFROM t0' # noqa + expected = 'SELECT sum("foo") AS "sum"\nFROM t0' # noqa assert str(result) == expected