Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed Dec 25, 2024
1 parent 88dbef5 commit 95ad606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def test_replace(self):
client.replace("default", "test_replace", ["x"], [(1, "a"), (2, "b")])
client.replace("default", "test_replace", ["x"], [(1, "c"), (2, "d")])
_, upload_res = client.execute("select * from test_replace")
self.assertEqual(upload_res, [(1, "c\r"), (2, "d\r")])
self.assertEqual(upload_res, [(1, "c"), (2, "d")])

def test_insert_with_compress(self):
client = Client.from_url(self.databend_url + "?compress=True&debug=True")
Expand Down

0 comments on commit 95ad606

Please sign in to comment.