Skip to content

Commit

Permalink
address changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximeZmt committed Mar 27, 2024
1 parent b9e2bf7 commit a1ec49a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,4 @@ deb-package/dist/**
dela/
bin/
nodes/
cookies.txt

.tool-versions
cookies.txt
3 changes: 3 additions & 0 deletions contracts/evoting/admin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func init() {
ctxAdminTest = sjson.NewContext()
}

// This test create an Admin Form structure which is then serialized and
// deserialized to check whether these operations work as intended.
// Given an AdminForm we should retrieve the same AdminForm after these operations.

Check failure on line 26 in contracts/evoting/admin_test.go

View workflow job for this annotation

GitHub Actions / Tests

Comment too long: // Given an AdminForm we should retrieve the same AdminForm after these operations. (83)
func TestAdmin_serde(t *testing.T) {
adminFormID := "myID"
adminFormList := []int{111111, 222222, 333333, 123456}
Expand Down
1 change: 1 addition & 0 deletions web/backend/src/controllers/dela.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,5 +265,6 @@ delaRouter.use('/*', (req, res) => {
}

const dataStr = JSON.stringify(bodyData);

sendToDela(dataStr, req, res);
});

0 comments on commit a1ec49a

Please sign in to comment.