(lorawanField string, expected any)
| 52 | } |
| 53 | |
| 54 | func errExpectedLengthEqual(lorawanField string, expected any) valueErr { |
| 55 | return unexpectedValue(errFieldLengthEqual.WithAttributes("lorawan_field", lorawanField, "expected", expected)) |
| 56 | } |
| 57 | |
| 58 | func errExpectedLengthLowerOrEqual(lorawanField string, max any) valueErr { |
| 59 | return unexpectedValue(errFieldLengthHasMax.WithAttributes("lorawan_field", lorawanField, "max", max)) |
no test coverage detected