We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30b7231 commit 37c507aCopy full SHA for 37c507a
integration/ports.go
@@ -60,8 +60,8 @@ var (
60
61
AllTestTypes = []*InfrastructureType{
62
WebSocketNoReplication,
63
- // LibP2PNoReplication,
64
- // WebSocketWithReplication,
+ LibP2PNoReplication,
+ WebSocketWithReplication,
65
}
66
)
67
token/driver/request_test.go
@@ -134,7 +134,10 @@ func TestTokenRequestMetadataSerialization(t *testing.T) {
134
assert.NoError(t, err)
135
raw2, err := reqMeta2.Bytes()
136
137
+ reqMeta3 := &TokenRequestMetadata{}
138
+ err = reqMeta3.FromBytes(raw2)
139
+ assert.NoError(t, err)
140
141
assert.Equal(t, reqMeta, reqMeta2)
- assert.Equal(t, raw, raw2)
142
+ assert.Equal(t, reqMeta2, reqMeta3)
143
0 commit comments