Skip to content

Commit

Permalink
fix build error - undefined: wrapperspb
Browse files Browse the repository at this point in the history
  • Loading branch information
miparnisari committed Jan 17, 2022
1 parent 332c5d3 commit 5747a62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/harness/executor/cases.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ var int64Cases = []TestCase{
{"int64 - exclusive gte & lte - valid (max)", &cases.Int64ExGTELTE{Val: 256}, true, "", 0},
{"int64 - exclusive gte & lte - valid (min)", &cases.Int64ExGTELTE{Val: 128}, true, "", 0},
{"int64 - exclusive gte & lte - invalid", &cases.Int64ExGTELTE{Val: 200}, false, "invalid Int64ExGTELTE.Val: value must be outside range (128, 256)", 1},

{"int64 - ignore_empty gte & lte - valid", &cases.Int64Ignore{Val: 0}, true, "", 0},

{"int64 optional - lte - valid", &cases.Int64LTEOptional{Val: &wrapperspb.Int64(63).Value}, true, "", 0},
{"int64 optional - lte - valid (equal)", &cases.Int64LTEOptional{Val: &wrapperspb.Int64(64).Value}, true, "", 0},
{"int64 optional - lte - valid", &cases.Int64LTEOptional{Val: &wrappers.Int64(63).Value}, true, "", 0},
{"int64 optional - lte - valid (equal)", &cases.Int64LTEOptional{Val: &wrappers.Int64(64).Value}, true, "", 0},
{"int64 optional - lte - valid (unset)", &cases.Int64LTEOptional{}, true, "", 0},
}

Expand Down

0 comments on commit 5747a62

Please # to comment.