summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml5
-rw-r--r--webhook/src/handler/tests/handler_integration.rs1
2 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6b102fa..a9def3d 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -11,7 +11,7 @@ commands:
- run:
name: Install bazel from go
command: |
- go get github.com/bazelbuild/bazelisk
+ go install github.com/bazelbuild/bazelisk
setup-ci:
description: |
Prepare all the requirements for the CI
@@ -76,7 +76,8 @@ jobs:
shell: powershell.exe
steps:
- run: systeminfo
- - setup-ci
+ - checkout
+ - run: choco install bazelisk
- restore_cache:
keys:
- bazel-cache-windows-{{ .Branch }}
diff --git a/webhook/src/handler/tests/handler_integration.rs b/webhook/src/handler/tests/handler_integration.rs
index a2ec403..d0767fc 100644
--- a/webhook/src/handler/tests/handler_integration.rs
+++ b/webhook/src/handler/tests/handler_integration.rs
@@ -204,7 +204,6 @@ async fn response_400_when_invalid_json_body() {
assert!(result.status() == 400);
}
-
#[tokio::test]
async fn response_400_when_invalid_utf8_body() {
let _ = TASK.deref();