File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 50
50
ExpectError : helpers .BoolPtr (true ),
51
51
}
52
52
ExampleLog = Log {
53
- ExpectIds : []int {123456 },
54
- NoExpectIds : []int {123456 },
53
+ ExpectIds : []uint {123456 },
54
+ NoExpectIds : []uint {123456 },
55
55
MatchRegex : `id[:\s"]*123456` ,
56
56
NoMatchRegex : `id[:\s"]*123456` ,
57
57
}
Original file line number Diff line number Diff line change @@ -341,13 +341,13 @@ type Log struct {
341
341
// Expect the given IDs to be contained in the log output.
342
342
// examples:
343
343
// -value: ExampleLog.ExpectIds
344
- ExpectIds []int `yaml:"expect_ids,omitempty"`
344
+ ExpectIds []uint `yaml:"expect_ids,omitempty"`
345
345
346
346
// description: |
347
347
// Expect the given IDs _not_ to be contained in the log output.
348
348
// examples:
349
349
// - value: ExampleLog.NoExpectIds
350
- NoExpectIds []int `yaml:"no_expect_ids,omitempty"`
350
+ NoExpectIds []uint `yaml:"no_expect_ids,omitempty"`
351
351
352
352
// description: |
353
353
// Expect the regular expression to match log content for the current types.
You can’t perform that action at this time.
0 commit comments