Skip to content

Commit 796a00a

Browse files
committed
fmt
1 parent eefb6bb commit 796a00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frankenphp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ func TestRequestSuperGlobalConditional_worker(t *testing.T) {
342342
runTest(t, func(handler func(http.ResponseWriter, *http.Request), _ *httptest.Server, i int) {
343343
if i%2 == 0 {
344344
// Even requests: don't use $_REQUEST
345-
body, _:= testGet(fmt.Sprintf("http://example.com/request-superglobal-conditional.php?val=%d", i), handler, t)
345+
body, _ := testGet(fmt.Sprintf("http://example.com/request-superglobal-conditional.php?val=%d", i), handler, t)
346346
assert.Contains(t, body, "SKIPPED")
347347
assert.Contains(t, body, fmt.Sprintf("'val' => '%d'", i))
348348
} else {

0 commit comments

Comments
 (0)