diff options
author | Anton Evangelatov <anton.evangelatov@gmail.com> | 2018-07-12 21:42:45 +0800 |
---|---|---|
committer | Balint Gabor <balint.g@gmail.com> | 2018-07-12 21:42:45 +0800 |
commit | f7d3678c28c4b92e45a458e4785bd0f1cdc20e34 (patch) | |
tree | ef72674417528413ce869f55762f16611b9a0e5f /swarm/api/client/client_test.go | |
parent | facf1bc9d66cbe4bb5492486a6fd876a13eeb31b (diff) | |
download | dexon-f7d3678c28c4b92e45a458e4785bd0f1cdc20e34.tar.gz dexon-f7d3678c28c4b92e45a458e4785bd0f1cdc20e34.tar.zst dexon-f7d3678c28c4b92e45a458e4785bd0f1cdc20e34.zip |
swarm/api/http: http package refactoring 1/5 and 2/5 (#17164)
Diffstat (limited to 'swarm/api/client/client_test.go')
-rw-r--r-- | swarm/api/client/client_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swarm/api/client/client_test.go b/swarm/api/client/client_test.go index a878bff17..e68147ab2 100644 --- a/swarm/api/client/client_test.go +++ b/swarm/api/client/client_test.go @@ -31,7 +31,7 @@ import ( ) func serverFunc(api *api.API) testutil.TestServer { - return swarmhttp.NewServer(api) + return swarmhttp.NewServer(api, "") } // TestClientUploadDownloadRaw test uploading and downloading raw data to swarm |