mirror of
https://github.com/prymitive/karma
synced 2026-05-11 03:46:48 +00:00
11 lines
236 B
Go
11 lines
236 B
Go
package filters
|
|
|
|
type alwaysInvalidFilter struct {
|
|
alertFilter
|
|
}
|
|
|
|
func (filter *alwaysInvalidFilter) init(name string, matcher *matcherT, rawText string, isValid bool, value string) {
|
|
filter.Matched = name
|
|
filter.RawText = rawText
|
|
}
|