diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-06-18 23:32:46 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-06-18 23:32:46 -0400 |
commit | 41398b172a5fd908195a31fe1cd1e727eac95051 (patch) | |
tree | fd22fc061476aadd61e648dbb4fc198dd6565b32 /svc/query_test.go | |
parent | c5daf914198948ef96cb463641ecc734471bcdd5 (diff) | |
download | getwtxt-41398b172a5fd908195a31fe1cd1e727eac95051.tar.gz |
changes related to registry-v0.3.0 v0.4.3
Diffstat (limited to 'svc/query_test.go')
-rw-r--r-- | svc/query_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svc/query_test.go b/svc/query_test.go index 687b102..414f99b 100644 --- a/svc/query_test.go +++ b/svc/query_test.go @@ -45,7 +45,7 @@ func Test_parseQueryOut(t *testing.T) { urls := "https://gbmor.dev/twtxt.txt" nick := "gbmor" - out, _, err := registry.GetTwtxt(urls) + out, _, err := registry.GetTwtxt(urls, nil) if err != nil { t.Errorf("Couldn't set up test: %v\n", err) } @@ -79,7 +79,7 @@ func Benchmark_parseQueryOut(b *testing.B) { urls := "https://gbmor.dev/twtxt.txt" nick := "gbmor" - out, _, err := registry.GetTwtxt(urls) + out, _, err := registry.GetTwtxt(urls, nil) if err != nil { b.Errorf("Couldn't set up test: %v\n", err) } @@ -184,7 +184,7 @@ func Test_compositeStatusQuery(t *testing.T) { func Benchmark_compositeStatusQuery(b *testing.B) { initTestConf() - statuses, _, _ := registry.GetTwtxt("https://gbmor.dev/twtxt.txt") + statuses, _, _ := registry.GetTwtxt("https://gbmor.dev/twtxt.txt", nil) parsed, _ := registry.ParseUserTwtxt(statuses, "gbmor", "https://gbmor.dev/twtxt.txt") _ = twtxtCache.AddUser("gbmor", "https://gbmor.dev/twtxt.txt", "1", net.ParseIP("127.0.0.1"), parsed) b.ResetTimer() |