aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/git_smart_http_test.go
Commit message (Collapse)AuthorAgeFilesLines
* Update HTTP status codes to modern codes (#18063)KN4CK3R2022-03-231-7/+7
| | | | | | * 2xx/3xx/4xx/5xx -> http.Status... * http.StatusFound -> http.StatusTemporaryRedirect * http.StatusMovedPermanently -> http.StatusPermanentRedirect
* format with gofumpt (#18184)65432022-01-201-1/+1
| | | | | | | | | | | * gofumpt -w -l . * gofumpt -w -l -extra . * Add linter * manual fix * change make fmt
* refactor: move from io/ioutil to io and os package (#17109)Eng Zer Jun2021-09-221-2/+2
| | | | | | | | | The io/ioutil package has been deprecated as of Go 1.16, see https://golang.org/doc/go1.16#ioutil. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Fix http path bug (#16117)Lunny Xiao2021-06-091-0/+69
* Fix http path bug * Add missed request * add tests Co-authored-by: 6543 <6543@obermui.de>