test(integration)
It's now possible to produce the DHT issues without process orchestration. Test1KBInstantaneous fails @jbenet @whyrusleeping
Brian Tiger Chow committed
Dec 24, 2014 at 09:24 UTC
35f6ddb8fa893e3cdd1d6888c67b1480ddcc5f45
1 file changed
+4
-2
epictest/addcat_test.go
+4
-2
@@ -27,14 +27,16 @@ import (
27
28
const kSeed = 1
29
30
-func Test100MBInstantaneous(t *testing.T) {
30
+func Test1KBInstantaneous(t *testing.T) {
31
conf := Config{
32
NetworkLatency: 0,
33
RoutingLatency: 0,
34
BlockstoreLatency: 0,
35
}
36
37
- AddCatBytes(RandomBytes(100*1024*1024), conf)
37
+ if err := AddCatBytes(RandomBytes(1*KB), conf); err != nil {
38
+ t.Fatal(err)
39
+ }
40
}
41
42
func TestDegenerateSlowBlockstore(t *testing.T) {