summaryrefslogtreecommitdiff
path: root/tests/test_numbits.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_numbits.py')
-rw-r--r--tests/test_numbits.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_numbits.py b/tests/test_numbits.py
index 3f69b4de..f7032de7 100644
--- a/tests/test_numbits.py
+++ b/tests/test_numbits.py
@@ -115,9 +115,9 @@ class NumbitsSqliteFunctionTest(CoverageTest):
def test_numbits_union(self):
res = self.cursor.execute(
- "select numbits_union("
- "(select numbits from data where id = 7),"
- "(select numbits from data where id = 9)"
+ "select numbits_union(" +
+ "(select numbits from data where id = 7)," +
+ "(select numbits from data where id = 9)" +
")"
)
expected = [
@@ -129,9 +129,9 @@ class NumbitsSqliteFunctionTest(CoverageTest):
def test_numbits_intersection(self):
res = self.cursor.execute(
- "select numbits_intersection("
- "(select numbits from data where id = 7),"
- "(select numbits from data where id = 9)"
+ "select numbits_intersection(" +
+ "(select numbits from data where id = 7)," +
+ "(select numbits from data where id = 9)" +
")"
)
answer = numbits_to_nums(list(res)[0][0])