(assert *assert.Assertions, firstPath string, firstValue any, secondPath string, secondValue any)
| 79 | } |
| 80 | |
| 81 | func override(assert *assert.Assertions, firstPath string, firstValue any, secondPath string, secondValue any) *Viper { |
| 82 | return overrideFromLayer(overrideLayer, assert, firstPath, firstValue, secondPath, secondValue) |
| 83 | } |
| 84 | |
| 85 | // overrideFromLayer performs the sequential override and low-level checks. |
| 86 | // |
no test coverage detected