Skip to content

Commit

Permalink
Clean up config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
frcroth committed Nov 11, 2024
1 parent a8925c6 commit 5e1f6e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ jobs:
- run:
name: Run end-to-end tests
command: |
mkdir -p binaryData/Organization_X && chmod 777 binaryData/Organization_X
for i in {1..3}; do # retry
.circleci/not-on-master.sh docker-compose run e2e-tests && s=0 && break || s=$?
done
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ test("Dataset upload", async (t) => {

const boundary = "----WebKitFormBoundaryAqTsFa4N9FW7zF7I";
let bodyString = `--${boundary}\r\n`;
// @ts-ignore
for (const [key, value] of formData.entries()) {
bodyString += `Content-Disposition: form-data; name="${key}"\r\n\r\n${value}\r\n`;
bodyString += `--${boundary}\r\n`;
Expand Down

0 comments on commit 5e1f6e4

Please sign in to comment.