Skip to content

Commit 9a52008

Browse files
committed
fixup! cleanup deserializer
Signed-off-by: Angelo De Caro <[email protected]>
1 parent 8ade423 commit 9a52008

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

Diff for: integration/ports.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,16 @@ var (
5353
CommType: fsc.LibP2P,
5454
ReplicationFactor: token.None,
5555
}
56-
WebSocketWithReplication = &InfrastructureType{
57-
Label: ginkgo.Label("replicas"),
58-
CommType: fsc.WebSocket,
59-
ReplicationFactor: 3,
60-
}
6156

6257
WebSocketNoReplicationOnly = []*InfrastructureType{
6358
WebSocketNoReplication,
6459
}
65-
LibP2PNoReplicationOnly = []*InfrastructureType{
66-
LibP2PNoReplication,
67-
}
6860
WebSocketWithReplicationOnly = []*InfrastructureType{
6961
WebSocketWithReplication,
7062
}
63+
LibP2PNoReplicationOnly = []*InfrastructureType{
64+
LibP2PNoReplication,
65+
}
7166

7267
AllTestTypes = []*InfrastructureType{
7368
WebSocketNoReplication,

Diff for: integration/token/fungible/fabtoken/fabtoken_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
var _ = Describe("EndToEnd", func() {
27-
for _, t := range integration2.WebSocketNoReplicationOnly {
27+
for _, t := range integration2.AllTestTypes {
2828
Describe("Fungible", t.Label, func() {
2929
ts, selector := newTestSuite(t.CommType, t.ReplicationFactor, "alice", "bob", "charlie")
3030
BeforeEach(ts.Setup)

0 commit comments

Comments
 (0)