Skip to content

Commit

Permalink
fix(sqlite): test case with whitespace at the end of the line
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs authored and cpcloud committed May 17, 2022
1 parent 5c0895a commit 7623ae9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ibis/backends/sqlite/tests/test_client.py
Expand Up @@ -59,9 +59,8 @@ def test_compile_toplevel():
# it works!
expr = t.foo.sum()
result = ibis.sqlite.compile(expr)
expected = """\
SELECT sum(t0.foo) AS sum
FROM t0 AS t0""" # noqa: W291
expected = "SELECT sum(t0.foo) AS sum \nFROM t0 AS t0" # noqa: W291

assert str(result) == expected


Expand Down

0 comments on commit 7623ae9

Please sign in to comment.