Skip to content

Commit

Permalink
Merge pull request #86 from deeglaze/skip
Browse files Browse the repository at this point in the history
Return after t.Skip()
  • Loading branch information
deeglaze authored Sep 27, 2023
2 parents b062fe4 + adc9187 commit bb64fd1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions verify/verify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,11 @@ func TestOpenGetExtendedReportVerifyClose(t *testing.T) {
t.Run(tc.Name+"_"+getReport.name, func(t *testing.T) {
if getReport.skipVlek && tc.EK == test.KeyChoiceVlek {
t.Skip()
return
}
if getReport.vlekOnly && tc.EK != test.KeyChoiceVlek {
t.Skip()
return
}
ereport, err := getReport.getter(d, tc.Input)
if !test.Match(err, tc.WantErr) {
Expand Down

0 comments on commit bb64fd1

Please sign in to comment.