mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 22:45:46 +03:00
Merge: - fix tests
* commit '0a1d7fd70732c306f39c777cbe60bb8bf1ab9da5': - fix tests
This commit is contained in:
commit
3f796a5d05
2 changed files with 2 additions and 2 deletions
|
@ -561,7 +561,7 @@ func BenchmarkSafeSearchParallel(b *testing.B) {
|
|||
|
||||
func TestDnsfilterDialCache(t *testing.T) {
|
||||
d := Dnsfilter{}
|
||||
dialCache = gcache.New(1).LRU().Expiration(30 * time.Minute).Build()
|
||||
gctx.dialCache = gcache.New(1).LRU().Expiration(30 * time.Minute).Build()
|
||||
|
||||
d.shouldBeInDialCache("hostname")
|
||||
if searchInDialCache("hostname") != "" {
|
||||
|
|
|
@ -459,7 +459,7 @@ func createTestServer(t *testing.T) *Server {
|
|||
s.conf.Filters = make([]dnsfilter.Filter, 0)
|
||||
|
||||
rules := "||nxdomain.example.org^\n||null.example.org^\n127.0.0.1 host.example.org\n"
|
||||
filter := dnsfilter.Filter{ID: 1, Data: []byte(rules)}
|
||||
filter := dnsfilter.Filter{ID: 0, Data: []byte(rules)}
|
||||
s.conf.Filters = append(s.conf.Filters, filter)
|
||||
return s
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue