(assert *assert.Assertions, firstPath string, firstValue any, secondPath string, secondValue any)
| 75 | } |
| 76 | |
| 77 | func overrideDefault(assert *assert.Assertions, firstPath string, firstValue any, secondPath string, secondValue any) *Viper { |
| 78 | return overrideFromLayer(defaultLayer, assert, firstPath, firstValue, secondPath, secondValue) |
| 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) |
no test coverage detected