Skip to content

Commit

Permalink
Upgrade go to 1.22.4 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
ani1311 authored Jun 12, 2024
1 parent 3b9a700 commit 56ea4dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestApp_singleBurst_Success(t *testing.T) {
startTime := time.Now()

count := 10
for i := 0; i < count; i++ {
for range count {
app.wg.Add(1)
app.slackQueue <- SlackPostMessageRequest{
Channel: "mockChannel",
Expand Down Expand Up @@ -89,7 +89,7 @@ func TestApp_MultiBurst_Success(t *testing.T) {
startTime := time.Now()

count := 20
for i := 0; i < count; i++ {
for range count {
app.wg.Add(1)
app.slackQueue <- SlackPostMessageRequest{
Channel: "mockChannel",
Expand Down Expand Up @@ -133,7 +133,7 @@ func TestApp_TestSlackRequestRate(t *testing.T) {
startTime := time.Now()

count := 20
for i := 0; i < count; i++ {
for range count {
app.wg.Add(1)
app.slackQueue <- SlackPostMessageRequest{
Channel: "mockChannel",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module fortio.org/slack-proxy

go 1.21
go 1.22.4

require (
fortio.org/assert v1.2.1
Expand Down

0 comments on commit 56ea4dd

Please sign in to comment.