diff --git a/fifoqueue/api.w b/fifoqueue/api.w index 24b1ef77..d1eefc8c 100644 --- a/fifoqueue/api.w +++ b/fifoqueue/api.w @@ -1,6 +1,6 @@ bring cloud; -pub struct FifoQueueProps extends cloud.QueueProps{} +pub struct FifoQueueProps extends cloud.QueueProps {} pub struct PushOptions { groupId: str; diff --git a/postgres/lib.test.w b/postgres/lib.test.w index 280bb030..eacd9e76 100644 --- a/postgres/lib.test.w +++ b/postgres/lib.test.w @@ -6,5 +6,5 @@ let db = new l.Database(name: "test", pgVersion: 15); test "run a simple query" { let result = db.query("SELECT 1 as one, 2 as two;"); - expect.equal(result.at(0), {one: 1, two: 2}); + expect.equal(result.at(0), {one: 1, two: 3}); }