We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c823324 commit c1cf8f3Copy full SHA for c1cf8f3
tests/e2e/standalone/publish_test.go
@@ -91,6 +91,8 @@ func TestStandalonePublish(t *testing.T) {
91
assert.Contains(t, output, "Event published successfully")
92
93
event := <-events
94
+ event.TraceID = ""
95
+ event.TraceParent = ""
96
assert.Equal(t, &common.TopicEvent{
97
ID: "3cc97064-edd1-49f4-b911-c959a7370e68",
98
Source: "e2e_test",
@@ -103,8 +105,6 @@ func TestStandalonePublish(t *testing.T) {
103
105
Data: map[string]interface{}{"dapr": "is_great"},
104
106
RawData: []byte(`{"dapr":"is_great"}`),
107
Metadata: make(map[string]string),
- TraceID: "00-00000000000000000000000000000000-0000000000000000-00",
- TraceParent: "00-00000000000000000000000000000000-0000000000000000-00",
108
}, event)
109
})
110
0 commit comments