diff options
author | Lewis Marshall <lewis@lmars.net> | 2017-07-31 21:58:19 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-07-31 21:58:19 +0800 |
commit | 60c858a5291da6757ca6798178f4e67f77dd4122 (patch) | |
tree | 817e7f5013e0059ec07852c73a61c91dfcf6881e /cmd/swarm/upload_test.go | |
parent | e9b850805eebc55ea8486323a1a7861b9b554430 (diff) | |
download | dexon-60c858a5291da6757ca6798178f4e67f77dd4122.tar.gz dexon-60c858a5291da6757ca6798178f4e67f77dd4122.tar.zst dexon-60c858a5291da6757ca6798178f4e67f77dd4122.zip |
swarm/api: make api.NewManifest synchronous (#14880)
Previously, NewManifest was asynchronous so subsequent code which tried
to use the returned manifest could error as the manifest was not yet
persisted.
Diffstat (limited to 'cmd/swarm/upload_test.go')
-rw-r--r-- | cmd/swarm/upload_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/swarm/upload_test.go b/cmd/swarm/upload_test.go index 5b74dd4f1..5656186e1 100644 --- a/cmd/swarm/upload_test.go +++ b/cmd/swarm/upload_test.go @@ -27,8 +27,6 @@ import ( // TestCLISwarmUp tests that running 'swarm up' makes the resulting file // available from all nodes via the HTTP API func TestCLISwarmUp(t *testing.T) { - t.Skip("flaky test") - // start 3 node cluster t.Log("starting 3 node cluster") cluster := newTestCluster(t, 3) |