Skip to content

Commit 3aea93f

Browse files
committed
Remove prints
1 parent 3b24d5b commit 3aea93f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

plugin/plugin_test.go

-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ func Test_OnTrafficFromClinet(t *testing.T) {
7878

7979
server := httptest.NewServer(
8080
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
81-
fmt.Println(r.URL.Path)
8281
switch r.URL.Path {
8382
case TokenizeAndSequencePath:
8483
w.WriteHeader(http.StatusOK)
@@ -156,7 +155,6 @@ func Test_OnTrafficFromClinetFailedTokenization(t *testing.T) {
156155

157156
server := httptest.NewServer(
158157
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
159-
fmt.Println(r.URL.Path)
160158
switch r.URL.Path {
161159
case TokenizeAndSequencePath:
162160
w.WriteHeader(http.StatusInternalServerError)
@@ -228,7 +226,6 @@ func Test_OnTrafficFromClinetFailedPrediction(t *testing.T) {
228226

229227
server := httptest.NewServer(
230228
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
231-
fmt.Println(r.URL.Path)
232229
switch r.URL.Path {
233230
case TokenizeAndSequencePath:
234231
w.WriteHeader(http.StatusOK)

0 commit comments

Comments
 (0)