Skip to content

Commit

Permalink
fix: unit test regression (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr authored Jan 4, 2024
1 parent 053e6a4 commit 66aa015
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ pull_request_rules:
- "#review-threads-unresolved=0"
- -approved-reviews-by~=author
- check-success=Validate PR title
- check-success=build
- base=main
- check-success=Validate PR title
- -check-failure=build-bedrock
Expand Down
2 changes: 1 addition & 1 deletion fifoqueue/api.w
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bring cloud;

pub struct FifoQueueProps extends cloud.QueueProps {}
pub struct FifoQueueProps extends cloud.QueueProps{}

pub struct PushOptions {
groupId: str;
Expand Down
1 change: 0 additions & 1 deletion mergify.w
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ pub class MergifyWorkflow {
"#review-threads-unresolved=0",
"-approved-reviews-by~=author",
"check-success=Validate PR title",
"check-success=build",
"base=main",
].concat(buildChecks.copy())
},
Expand Down
2 changes: 1 addition & 1 deletion postgres/lib.test.w
Original file line number Diff line number Diff line change
Expand Up @@ -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: 3});
expect.equal(result.at(0), {one: 1, two: 2});
}

0 comments on commit 66aa015

Please sign in to comment.