fix typo causing infinite loop

This commit is contained in:
Dan Laine 2020-06-30 17:13:06 -04:00
parent 1d2e1eb00e
commit d92420d4f4
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ func (mc monotonicCheck) Execute() (interface{}, error) {
if mc.passed {
return nil, nil
}
details, pass := mc.Execute()
details, pass := mc.check.Execute()
if pass == nil {
mc.passed = true
}