Skip to content

Commit

Permalink
feat: Updated test/e2e/e2e.go
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Feb 1, 2024
1 parent faf62cf commit 6ee80d6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/e2e/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ func RunE2ETests(t *testing.T) {
if err != nil {
t.Fatalf("Failed to get user token: %v", err)
}
headers := make(map[string]string)
headers := map[string]string{
"operationID": operationID,
"token": token,
}
if err != nil {
headers = make(map[string]string)
}
Expand All @@ -53,7 +56,7 @@ func RunE2ETests(t *testing.T) {
headers["token"] = token
}

"operationID": operationID,

}

// Example of getting user info
Expand Down

0 comments on commit 6ee80d6

Please sign in to comment.