aboutsummaryrefslogtreecommitdiff
path: root/uri_test.go
diff options
context:
space:
mode:
authorGravatar Erik Dubbelboer <erik@dubbelboer.com> 2021-06-18 13:36:54 +0200
committerGravatar GitHub <noreply@github.com> 2021-06-18 13:36:54 +0200
commit87fc95849cd9ec7ffb3555bd7ec6317865902241 (patch)
tree7da68d05a3da0ef5c9fabcd3bd0da39edb1df9b6 /uri_test.go
parentDefined Transport for the client (#1045) (diff)
downloadfasthttp-87fc95849cd9ec7ffb3555bd7ec6317865902241.tar.gz
fasthttp-87fc95849cd9ec7ffb3555bd7ec6317865902241.tar.bz2
fasthttp-87fc95849cd9ec7ffb3555bd7ec6317865902241.zip
Run go test on github actions (#1047)
* Run go test on github actions travis-ci.org has stopped. See also: https://github.com/curl/curl/issues/7150 Downside: github actions don't support ppc64le * Run less * delete .travis.yml * Remove travis + minor lint fixes
Diffstat (limited to 'uri_test.go')
-rw-r--r--uri_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/uri_test.go b/uri_test.go
index e2995f6..2faf825 100644
--- a/uri_test.go
+++ b/uri_test.go
@@ -395,6 +395,6 @@ func TestURIWithQuerystringOverride(t *testing.T) {
uriString := string(u.RequestURI())
if uriString != "/?q1=foo&q2=bar&q4=quux" {
- t.Fatalf("Expected Querystring to be overriden but was %s ", uriString)
+ t.Fatalf("Expected Querystring to be overridden but was %s ", uriString)
}
}