Skip to content

Commit d63a10f

Browse files
vishrclaude
andcommitted
Fix imports in graceful shutdown test
- Remove unused imports (context, fmt) - Add required httptest import - Ensure all imports are properly used 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent f78b234 commit d63a10f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cookbook/graceful-shutdown/server_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package main
22

33
import (
4-
"context"
5-
"fmt"
64
"net/http"
5+
"net/http/httptest"
76
"testing"
87
"time"
98

0 commit comments

Comments
 (0)