Skip to content

Commit

Permalink
fix traces
Browse files Browse the repository at this point in the history
  • Loading branch information
insumity committed Mar 28, 2024
1 parent 991e220 commit 3eb2b9b
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 12 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -442,13 +442,13 @@ TEST RESULTS
}
}
if len(passedTests) > 0 {
report += fmt.Sprintln("\n\nPASSED TESTS:\n")
report += fmt.Sprintln("\n\nPASSED TESTS:")
for _, t := range passedTests {
report += t.Report()
}
}
if len(remainingTests) > 0 {
report += fmt.Sprintln("\n\nREMAINING TESTS:\n")
report += fmt.Sprintln("\n\nREMAINING TESTS:")
for _, t := range remainingTests {
report += t.Report()
}
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/changeover.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@
"InitialHeight": {
"revision_height": 111
},
"DistributionChannel": "channel-0"
"DistributionChannel": "channel-0",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/consumer-double-sign.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/consumer-misbehaviour.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/democracy.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/democracyRewardsSteps.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/happyPath.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
6 changes: 4 additions & 2 deletions tests/e2e/tracehandler_testdata/multipleConsumers.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down Expand Up @@ -322,7 +323,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/shorthappy.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/tracehandler_testdata/slashThrottle.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"InitialHeight": {
"revision_height": 1
},
"DistributionChannel": ""
"DistributionChannel": "",
"TopN": 100
},
"State": {
"provi": {
Expand Down

0 comments on commit 3eb2b9b

Please sign in to comment.