Skip to content

Commit

Permalink
nit picking
Browse files Browse the repository at this point in the history
  • Loading branch information
aronatkins committed Jan 24, 2025
1 parent 79f0095 commit bf50f5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/rslog/debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ func RegionByName(name string) ProductRegion {
debugMutex.RLock()
defer debugMutex.RUnlock()

for region, region_name := range debugRegions {
if name == region_name {
for region, regionName := range debugRegions {
if name == regionName {
return region
}
}
Expand Down
2 changes: 0 additions & 2 deletions pkg/rslog/debug_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import (
"github.com/stretchr/testify/suite"
)

// Copyright (C) 2025 by Posit Software, PBC.

func TestDebugSuite(t *testing.T) {
suite.Run(t, &DebugSuite{})
}
Expand Down

0 comments on commit bf50f5f

Please sign in to comment.