chore: switch HTTP 100 test case values (#10858)
This commit is contained in:
parent
c2277fa2fc
commit
e4b9924625
|
|
@ -153,7 +153,7 @@ func TestStatusCode(t *testing.T) {
|
|||
plugin: &HTTP{
|
||||
URL: u.String(),
|
||||
},
|
||||
statusCode: 103,
|
||||
statusCode: http.StatusSwitchingProtocols,
|
||||
errFunc: func(t *testing.T, err error) {
|
||||
require.Error(t, err)
|
||||
},
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ func TestStatusCode(t *testing.T) {
|
|||
plugin: &Loki{
|
||||
Domain: u.String(),
|
||||
},
|
||||
statusCode: 103,
|
||||
statusCode: http.StatusSwitchingProtocols,
|
||||
errFunc: func(t *testing.T, err error) {
|
||||
require.Error(t, err)
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue