mirror of
https://github.com/gofiber/fiber.git
synced 2025-07-14 16:20:34 +00:00
Fix lint issues
This commit is contained in:
parent
72992999ed
commit
4ff6a2ecc0
@ -320,7 +320,7 @@ func TestState_GetComplex64(t *testing.T) {
|
||||
t.Parallel()
|
||||
st := newState()
|
||||
|
||||
var c complex64 = complex(2, 3)
|
||||
var c = complex(2, 3)
|
||||
st.Set("complex64", c)
|
||||
cRes, ok := st.GetComplex64("complex64")
|
||||
require.True(t, ok)
|
||||
@ -340,7 +340,7 @@ func TestState_GetComplex128(t *testing.T) {
|
||||
t.Parallel()
|
||||
st := newState()
|
||||
|
||||
var c complex128 = complex(4, 5)
|
||||
var c = complex(4, 5)
|
||||
st.Set("complex128", c)
|
||||
cRes, ok := st.GetComplex128("complex128")
|
||||
require.True(t, ok)
|
||||
|
Loading…
x
Reference in New Issue
Block a user