mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-21 17:34:24 +01:00
fix(test): TestGitAttributeCheckerError must allow broken pipe
Early cancelation can lead to two kinds of error. Either canceled or broken pipe, depending on when the goroutine stops. Fixes: forgejo/forgejo#6012
This commit is contained in:
parent
6553148de9
commit
b9697f5227
|
@ -254,7 +254,7 @@ func TestGitAttributeCheckerError(t *testing.T) {
|
|||
require.NoError(t, err)
|
||||
|
||||
_, err = ac.CheckPath("i-am-a-python.p")
|
||||
require.ErrorIs(t, err, context.Canceled)
|
||||
require.Error(t, err)
|
||||
})
|
||||
|
||||
t.Run("Cancelled/DuringRun", func(t *testing.T) {
|
||||
|
|
Loading…
Reference in a new issue