From ef2a7d7284f153cc4548273a3aaadcb60543006d Mon Sep 17 00:00:00 2001 From: Jesse Gonzalez Date: Tue, 15 Apr 2014 11:16:18 -0500 Subject: [PATCH] Corrected test query for lists. --- rexpro/tests/test_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rexpro/tests/test_connection.py b/rexpro/tests/test_connection.py index bee687e..a2cd614 100644 --- a/rexpro/tests/test_connection.py +++ b/rexpro/tests/test_connection.py @@ -66,7 +66,7 @@ def test_data_integrity(self): #test list data = e([1,2]) - assert data == (1,2) + assert data == [1,2] def test_query_isolation(self): """ Test that variables defined in one query are not available in subsequent queries """