Skip to content

Commit

Permalink
Fix statement
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby authored Mar 24, 2024
1 parent 54b11fb commit 0d1cbbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ func Test_GetMIME(t *testing.T) {
res = GetMIME("unknown")
require.Equal(t, MIMEOctetStream, res)

res := GetMIME(".zst")
res = GetMIME(".zst")
require.Equal(t, "application/zstd", res)

res := GetMIME("zst")
res = GetMIME("zst")
require.Equal(t, "application/zstd", res)

// empty case
Expand Down

0 comments on commit 0d1cbbd

Please sign in to comment.