Browse Source

output bytes instead of string

Darien Raymond 9 years ago
parent
commit
dc0e9aa9b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      testing/scenarios/shadowsocks_test.go

+ 1 - 1
testing/scenarios/shadowsocks_test.go

@@ -56,7 +56,7 @@ func TestShadowsocksTCP(t *testing.T) {
 				break
 			}
 			if response.Len() > len(expectedResponse) {
-				fmt.Printf("Unexpected response: %s\n", response.String())
+				fmt.Printf("Unexpected response: %v\n", response.Value)
 				break
 			}
 		}